PIXNET Logo登入

SunnyYummy的玩具箱

跳到主文

林莉C亞米 & 雪球軟糖

部落格全站分類:生活綜合

  • 相簿
  • 部落格
  • 留言
  • 名片
  • 10月 27 週一 202514:56
  • 桃園住宿推薦|IF Motel 漫旅館:CP值爆表!住進有按摩浴缸的超大四人房,早餐竟然還有骰子牛、炸蝦吃到飽!

iF 漫旅舘外觀

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC", "Microsoft JhengHei", sans-serif;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
color: #2c3e50;
line-height: 1.8;
-webkit-font-smoothing: antialiased;
}
.container {
max-width: 1000px;
margin: 0 auto;
padding: 60px 20px;
}
.hero {
text-align: center;
margin-bottom: 60px;
animation: fadeInDown 1s ease-out;
}
.hero h1 {
font-size: 52px;
font-weight: 800;
letter-spacing: -0.02em;
margin-bottom: 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-shadow: 0 2px 10px rgba(102, 126, 234, 0.1);
}
.hero .subtitle {
font-size: 22px;
color: #5a6c7d;
font-weight: 400;
font-style: italic;
}
.intro-section {
background: #fff;
border-radius: 20px;
padding: 50px;
margin-bottom: 40px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
animation: fadeInUp 1s ease-out 0.2s both;
}
.intro-section p {
font-size: 20px;
line-height: 2;
color: #34495e;
text-align: center;
}
.content-section {
background: #fff;
border-radius: 20px;
padding: 50px;
margin-bottom: 40px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
animation: fadeInUp 1s ease-out;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.content-section:hover {
transform: translateY(-8px);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.section-title {
font-size: 36px;
font-weight: 700;
margin-bottom: 30px;
color: #2c3e50;
letter-spacing: -0.01em;
border-left: 5px solid #667eea;
padding-left: 20px;
}
.section-subtitle {
font-size: 24px;
font-weight: 600;
margin: 35px 0 20px;
color: #5a6c7d;
display: flex;
align-items: center;
}
.section-subtitle::before {
content: "";
margin-right: 10px;
font-size: 28px;
}
p {
font-size: 18px;
line-height: 2;
color: #34495e;
margin-bottom: 24px;
}
.image-container {
margin: 35px 0;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.image-container:hover {
transform: scale(1.03);
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}
.image-container img {
width: 100%;
height: auto;
display: block;
}
.highlight-box {
background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
border-left: 5px solid #667eea;
padding: 30px;
border-radius: 12px;
margin: 30px 0;
font-size: 19px;
line-height: 2;
}
.features-list {
background: linear-gradient(135deg, #f093fb15 0%, #f5576c15 100%);
padding: 35px;
border-radius: 16px;
margin: 30px 0;
}
.features-list ul {
list-style: none;
padding: 0;
}
.features-list li {
font-size: 19px;
line-height: 2.2;
color: #2c3e50;
padding-left: 35px;
position: relative;
margin-bottom: 12px;
}
.features-list li::before {
content: " ";
position: absolute;
left: 0;
font-size: 22px;
}
.info-card {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: #fff;
padding: 50px;
border-radius: 20px;
margin-top: 60px;
box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
}
.info-card h3 {
font-size: 36px;
margin-bottom: 35px;
font-weight: 700;
text-align: center;
}
.info-item {
display: flex;
margin-bottom: 18px;
font-size: 18px;
line-height: 1.8;
align-items: flex-start;
}
.info-label {
font-weight: 700;
min-width: 140px;
color: #fff;
flex-shrink: 0;
}
.info-value {
color: #f0f0f0;
}
.info-value a {
color: #fff;
text-decoration: underline;
transition: opacity 0.3s ease;
}
.info-value a:hover {
opacity: 0.8;
}
.badge {
display: inline-block;
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
color: #fff;
padding: 10px 20px;
border-radius: 25px;
font-size: 15px;
font-weight: 700;
margin-bottom: 25px;
box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
}
.grid-2 {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin: 35px 0;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(40px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-40px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 768px) {
.container {
padding: 40px 16px;
}
.hero h1 {
font-size: 36px;
}
.hero .subtitle {
font-size: 18px;
}
.intro-section,
.content-section {
padding: 30px 24px;
border-radius: 16px;
}
.section-title {
font-size: 28px;
}
.section-subtitle {
font-size: 20px;
}
p {
font-size: 16px;
}
.info-card {
padding: 35px 24px;
}
.info-item {
flex-direction: column;
}
.info-label {
margin-bottom: 6px;
}
}
.emoji {
font-size: 1.2em;
}
(繼續閱讀...)
文章標籤

SunnyYummy 發表在 痞客邦 留言(0) 人氣(3)

  • 個人分類:
▲top
  • 10月 22 週三 202516:28
  • 【桃園親子放電好去處】開箱桃知道「小小建築師萬聖節樂園」!亞米安娜變身工程師,挑戰巨無霸氣墊城堡!

萬聖節活動

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC", "Microsoft JhengHei", sans-serif;
background: #f5f5f7;
color: #1d1d1f;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
.container {
max-width: 980px;
margin: 0 auto;
padding: 60px 20px;
}
.hero {
text-align: center;
margin-bottom: 80px;
animation: fadeInUp 1s ease-out;
}
.hero h1 {
font-size: 56px;
font-weight: 700;
letter-spacing: -0.02em;
margin-bottom: 20px;
background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero .subtitle {
font-size: 24px;
color: #6e6e73;
font-weight: 400;
}
.content-section {
background: #fff;
border-radius: 18px;
padding: 60px;
margin-bottom: 40px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
animation: fadeInUp 1s ease-out;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.content-section:hover {
transform: translateY(-5px);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.section-title {
font-size: 40px;
font-weight: 700;
margin-bottom: 30px;
color: #1d1d1f;
letter-spacing: -0.01em;
}
.section-subtitle {
font-size: 28px;
font-weight: 600;
margin: 40px 0 20px;
color: #424245;
}
p {
font-size: 18px;
line-height: 1.8;
color: #424245;
margin-bottom: 24px;
}
.image-container {
margin: 40px 0;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
transition: transform 0.4s ease;
}
.image-container:hover {
transform: scale(1.02);
}
.image-container img {
width: 100%;
height: auto;
display: block;
}
.highlight-box {
background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
border-left: 4px solid #ff6b35;
padding: 30px;
border-radius: 12px;
margin: 30px 0;
}
.info-card {
background: linear-gradient(135deg, #1d1d1f 0%, #424245 100%);
color: #fff;
padding: 40px;
border-radius: 18px;
margin-top: 60px;
}
.info-card h3 {
font-size: 32px;
margin-bottom: 30px;
font-weight: 700;
}
.info-item {
display: flex;
margin-bottom: 16px;
font-size: 17px;
line-height: 1.6;
}
.info-label {
font-weight: 600;
min-width: 120px;
color: #f5f5f7;
}
.info-value {
color: #d2d2d7;
}
.tip-box {
background: #fff;
border: 2px solid #ff6b35;
padding: 20px 30px;
border-radius: 12px;
margin-top: 20px;
}
.tip-box strong {
color: #ff6b35;
}
.grid-2 {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin: 40px 0;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 768px) {
.container {
padding: 40px 16px;
}
.hero h1 {
font-size: 36px;
}
.hero .subtitle {
font-size: 18px;
}
.content-section {
padding: 30px 24px;
border-radius: 12px;
}
.section-title {
font-size: 28px;
}
.section-subtitle {
font-size: 22px;
}
p {
font-size: 16px;
}
.info-card {
padding: 30px 24px;
}
.info-item {
flex-direction: column;
}
.info-label {
margin-bottom: 4px;
}
}
.badge {
display: inline-block;
background: #ff6b35;
color: #fff;
padding: 8px 16px;
border-radius: 20px;
font-size: 14px;
font-weight: 600;
margin-bottom: 20px;
}
(繼續閱讀...)
文章標籤

SunnyYummy 發表在 痞客邦 留言(0) 人氣(11)

  • 個人分類:
▲top
  • 10月 04 週六 202512:24
  • 【竹北美食探店】鴻蝦匯:不只是美味泰國蝦,更是爸媽的放風天堂!超狂遊戲室讓小孩玩到不想走!

餐廳外觀

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--apple-blue: #007AFF;
--apple-gray: #F5F5F7;
--apple-dark: #1D1D1F;
--apple-secondary: #86868B;
--apple-border: #D2D2D7;
--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}
body {
font-family: -apple-system, BlinkMacSystemFont, "SF Pro SC", "SF Pro Text", "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
background: #FFFFFF;
color: var(--apple-dark);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.container {
max-width: 980px;
margin: 0 auto;
padding: 80px 20px;
}
.hero {
text-align: center;
margin-bottom: 60px;
padding: 40px 0;
}
.hero h1 {
font-size: 48px;
font-weight: 700;
letter-spacing: -0.5px;
margin-bottom: 16px;
background: linear-gradient(135deg, var(--apple-dark) 0%, var(--apple-secondary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero .subtitle {
font-size: 24px;
font-weight: 400;
color: var(--apple-secondary);
margin-bottom: 32px;
}
.content-section {
margin-bottom: 48px;
animation: fadeIn 0.8s ease-in-out;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.text-content {
font-size: 17px;
line-height: 1.8;
color: var(--apple-dark);
margin-bottom: 24px;
}
.text-content p {
margin-bottom: 24px;
}
.highlight {
background: var(--apple-gray);
padding: 24px 32px;
border-radius: 16px;
margin: 32px 0;
border-left: 4px solid var(--apple-blue);
}
.image-container {
margin: 40px 0;
border-radius: 16px;
overflow: hidden;
box-shadow: var(--shadow-md);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-container:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
}
.image-container img {
width: 100%;
height: auto;
display: block;
transition: transform 0.3s ease;
}
.image-container:hover img {
transform: scale(1.02);
}
.image-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin: 40px 0;
}
.image-grid .image-container {
margin: 0;
}
.section-title {
font-size: 32px;
font-weight: 700;
letter-spacing: -0.5px;
margin: 48px 0 24px;
color: var(--apple-dark);
}
.feature-card {
background: var(--apple-gray);
padding: 32px;
border-radius: 20px;
margin: 24px 0;
transition: all 0.3s ease;
}
.feature-card:hover {
background: #EBEBED;
transform: translateY(-2px);
}
.feature-card h3 {
font-size: 24px;
font-weight: 600;
margin-bottom: 12px;
display: flex;
align-items: center;
gap: 12px;
}
.feature-card p {
font-size: 17px;
line-height: 1.7;
color: var(--apple-secondary);
}
.info-box {
background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
color: white;
padding: 40px;
border-radius: 24px;
margin: 48px 0;
box-shadow: var(--shadow-lg);
}
.info-box h3 {
font-size: 28px;
font-weight: 700;
margin-bottom: 24px;
text-align: center;
}
.info-item {
display: flex;
align-items: flex-start;
margin-bottom: 16px;
font-size: 16px;
line-height: 1.8;
}
.info-item .emoji {
font-size: 24px;
margin-right: 12px;
flex-shrink: 0;
}
.tags-container {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin: 32px 0;
padding: 32px;
background: var(--apple-gray);
border-radius: 16px;
}
.tag {
display: inline-block;
padding: 8px 16px;
background: white;
color: var(--apple-blue);
border-radius: 20px;
font-size: 14px;
font-weight: 500;
box-shadow: var(--shadow-sm);
transition: all 0.2s ease;
cursor: default;
}
.tag:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-md);
background: var(--apple-blue);
color: white;
}
.divider {
height: 1px;
background: var(--apple-border);
margin: 48px 0;
}
.emoji-icon {
font-size: 28px;
margin-right: 8px;
}
/* 响应式设计 */
@media (max-width: 768px) {
.container {
padding: 40px 16px;
}
.hero h1 {
font-size: 32px;
}
.hero .subtitle {
font-size: 18px;
}
.section-title {
font-size: 24px;
}
.text-content {
font-size: 16px;
}
.image-grid {
grid-template-columns: 1fr;
}
.feature-card {
padding: 24px;
}
.info-box {
padding: 28px;
}
}
/* 滚动动画 */
@media (prefers-reduced-motion: no-preference) {
.content-section {
opacity: 0;
animation: fadeIn 0.8s ease-in-out forwards;
}
.content-section:nth-child(1) {
animation-delay: 0.1s;
}
.content-section:nth-child(2) {
animation-delay: 0.2s;
}
.content-section:nth-child(3) {
animation-delay: 0.3s;
}
.content-section:nth-child(4) {
animation-delay: 0.4s;
}
}
(繼續閱讀...)
文章標籤

SunnyYummy 發表在 痞客邦 留言(0) 人氣(4)

  • 個人分類:
▲top
  • 9月 30 週二 202522:11
  • 淡水老街手翻書體驗 - 把快樂變成永久紀念品

翻時光店面外觀

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
max-width: 800px;
margin: 0 auto;
background: #fff;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
overflow: hidden;
animation: fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.header {
background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
padding: 40px 30px;
text-align: center;
color: white;
}
.header h1 {
font-size: 2.5em;
margin-bottom: 10px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
animation: bounce 2s infinite;
}
@keyframes bounce {
0%,
20%,
50%,
80%,
100% {
transform: translateY(0);
}
40% {
transform: translateY(-10px);
}
60% {
transform: translateY(-5px);
}
}
.subtitle {
font-size: 1.2em;
opacity: 0.9;
font-weight: 300;
}
.content {
padding: 40px;
}
.intro {
font-size: 18px;
color: #1d1d1f;
margin-bottom: 30px;
padding: 20px;
border-left: 5px solid #007aff;
background-color: #f2f2f7;
border-radius: 0 10px 10px 0;
}
.section {
margin-bottom: 40px;
padding: 20px;
border-radius: 15px;
background: #ffffff;
border: 1px solid #e5e5e7;
transition: all 0.3s ease;
}
.section:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.step-title {
font-size: 1.4em;
color: #007aff;
margin-bottom: 15px;
font-weight: 600;
display: flex;
align-items: center;
}
.step-title::before {
content: " ";
margin-right: 10px;
font-size: 1.2em;
}
.image-container {
text-align: center;
margin: 25px 0;
position: relative;
overflow: hidden;
border-radius: 15px;
}
.image-container img {
max-width: 100%;
height: auto;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease;
}
.image-container:hover img {
transform: scale(1.05);
}
.text-content {
font-size: 16px;
line-height: 1.8;
color: #1d1d1f;
margin-bottom: 20px;
}
.highlight {
background: #f2f2f7;
padding: 15px 20px;
border-radius: 10px;
margin: 20px 0;
border-left: 4px solid #007aff;
font-weight: 500;
color: #1d1d1f;
}
.store-info {
background: #1d1d1f;
color: white;
padding: 30px;
border-radius: 15px;
margin-top: 40px;
}
.store-info h3 {
font-size: 1.5em;
margin-bottom: 20px;
text-align: center;
}
.store-info p {
margin-bottom: 10px;
font-size: 16px;
}
.emoji {
font-size: 1.2em;
margin-right: 8px;
}
.price-highlight {
background: #007aff;
color: white;
padding: 10px 20px;
border-radius: 25px;
display: inline-block;
font-weight: 600;
font-size: 1.1em;
margin: 10px 0;
box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}
.footer {
text-align: center;
padding: 30px;
background: #f2f2f7;
color: #86868b;
font-style: italic;
}
@media (max-width: 768px) {
.container {
margin: 10px;
border-radius: 15px;
}
.header {
padding: 30px 20px;
}
.header h1 {
font-size: 2em;
}
.content {
padding: 20px;
}
.intro {
font-size: 16px;
padding: 15px;
}
}
.scroll-indicator {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 3px;
background: #007aff;
transform-origin: left;
transform: scaleX(0);
animation: scroll-progress linear;
animation-timeline: scroll();
z-index: 1000;
}
@supports (animation-timeline: scroll()) {
.scroll-indicator {
animation: scroll-progress linear;
animation-timeline: scroll();
}
}
@keyframes scroll-progress {
to {
transform: scaleX(1);
}
}
(繼續閱讀...)
文章標籤

SunnyYummy 發表在 痞客邦 留言(0) 人氣(10)

  • 個人分類:
▲top
  • 9月 24 週三 202514:21
  • 【新竹親子景點推薦】會來尖石溫泉渡假村

會來尖石溫泉渡假村 * {
}
header {
text-align: center;
margin-bottom: 30px;
padding-bottom: 20px;
border-bottom: 1px solid #e0e0e0;
}
h1 {
font-size: 28px;
color: #2c6e9b;
margin-bottom: 15px;
}
.intro {
font-size: 18px;
color: #555;
margin-bottom: 30px;
}
.author {
font-size: 16px;
color: #777;
font-style: italic;
}
.section {
margin-bottom: 40px;
background: white;
border-radius: 8px;
padding: 25px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.section-title {
font-size: 22px;
color: #2c6e9b;
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 2px solid #f0f0f0;
}
.content {
font-size: 16px;
margin-bottom: 20px;
}
.image-container {
text-align: center;
margin: 20px 0;
}
.image-container img {
max-width: 100%;
height: auto;
border-radius: 6px;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.info-box {
background-color: #f0f7ff;
border-left: 4px solid #2c6e9b;
padding: 15px;
margin: 25px 0;
border-radius: 0 4px 4px 0;
}
.info-title {
font-weight: bold;
margin-bottom: 10px;
color: #2c6e9b;
}
footer {
text-align: center;
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #e0e0e0;
color: #777;
font-size: 14px;
}
@media (max-width: 600px) {
body {
padding: 15px;
}
h1 {
font-size: 24px;
}
.section {
padding: 15px;
}
.section-title {
font-size: 20px;
}
}
尖叫聲沒停過!走進峇里島風情,滑水道、SPA、溫泉魚,玩上一整天都不夠!
哈囉!我是最愛帶著亞米和安娜到處探險的亞米媽媽啦!
(繼續閱讀...)
文章標籤

SunnyYummy 發表在 痞客邦 留言(0) 人氣(1)

  • 個人分類:
▲top
  • 9月 23 週二 202514:35
  • 【台北大安】調味品串酒坊|亞米媽媽帶你親子同樂,美食、啤酒、電玩一次滿足!

調味品串酒坊外觀 /* 標題樣式 */
header {
text-align: center;
margin-bottom: 40px;
padding-bottom: 20px;
border-bottom: 1px solid #eee;
}
h1 {
font-size: 2.2rem;
color: #2c3e50;
margin-bottom: 10px;
}
.subtitle {
font-size: 1.2rem;
color: #7f8c8d;
font-weight: normal;
}
/* 圖片樣式 */
.image-container {
text-align: center;
margin: 30px 0;
}
.image-container img {
max-width: 100%;
height: auto;
border-radius: 6px;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.image-caption {
font-size: 0.9rem;
color: #7f8c8d;
margin-top: 10px;
font-style: italic;
}
/* 重點樣式 */
.highlight {
background-color: #fff9e6;
padding: 15px;
border-left: 4px solid #f1c40f;
margin: 20px 0;
border-radius: 0 4px 4px 0;
}
/* 菜單項目樣式 */
.menu-item {
margin-bottom: 30px;
padding-bottom: 20px;
border-bottom: 1px dashed #eee;
}
.menu-item:last-child {
border-bottom: none;
}
.menu-title {
font-size: 1.4rem;
color: #e74c3c;
margin-bottom: 10px;
}
/* 店家資訊樣式 */
.restaurant-info {
background-color: #f8f9fa;
padding: 20px;
border-radius: 6px;
margin-top: 40px;
}
.info-title {
font-size: 1.3rem;
color: #2c3e50;
margin-bottom: 15px;
}
.info-item {
margin-bottom: 8px;
}
}
亞米媽媽的餐酒館體驗
台北大安區特色餐酒館【調味品串酒坊】親子同樂好去處
(繼續閱讀...)
文章標籤

SunnyYummy 發表在 痞客邦 留言(0) 人氣(2,645)

  • 個人分類:
▲top
  • 9月 18 週四 202515:56
  • 剪刀石頭布擂台音樂劇 - 家庭親子活動

剪刀石頭布擂台音樂劇 - 家庭親子活動

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Helvetica Neue', Arial, 'Microsoft JhengHei', sans-serif;
}
body {
background-color: #fff6f6;
color: #333;
line-height: 1.6;
}
.container {
max-width: 1000px;
margin: 0 auto;
padding: 20px;
}
header {
text-align: center;
padding: 30px 0;
background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
border-radius: 15px;
margin-bottom: 30px;
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
position: relative;
overflow: hidden;
}
header::before {
content: "✊ ✋ ✌️";
font-size: 60px;
position: absolute;
opacity: 0.2;
top: 20px;
left: 0;
right: 0;
}
h1 {
font-size: 2.8rem;
color: #d44d6d;
margin-bottom: 15px;
text-shadow: 2px 2px 0px rgba(255,255,255,0.8);
position: relative;
}
.warning {
background-color: #ffeb3b;
color: #d44d6d;
font-weight: bold;
padding: 15px;
border-radius: 10px;
margin: 20px 0;
text-align: center;
font-size: 1.2rem;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.02); }
100% { transform: scale(1); }
}
.intro {
background-color: white;
padding: 25px;
border-radius: 15px;
margin-bottom: 30px;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.highlight {
color: #d44d6d;
font-weight: bold;
}
.event-info {
background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
color: white;
padding: 30px;
border-radius: 15px;
margin-bottom: 30px;
box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.event-info h2 {
text-align: center;
margin-bottom: 25px;
font-size: 2rem;
}
.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.info-item {
background-color: rgba(255, 255, 255, 0.15);
padding: 20px;
border-radius: 10px;
backdrop-filter: blur(5px);
}
.info-item h3 {
margin-bottom: 10px;
display: flex;
align-items: center;
}
.info-item h3::before {
content: "🎯";
margin-right: 10px;
}
.highlights {
background-color: white;
padding: 30px;
border-radius: 15px;
margin-bottom: 30px;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.highlights h2 {
text-align: center;
color: #d44d6d;
margin-bottom: 25px;
}
.highlight-list {
list-style-type: none;
}
.highlight-list li {
padding: 15px;
margin-bottom: 15px;
background-color: #f8f8f8;
border-radius: 10px;
border-left: 5px solid #d44d6d;
display: flex;
align-items: center;
}
.highlight-list li::before {
content: "🌟";
font-size: 1.5rem;
margin-right: 15px;
}
.cta {
text-align: center;
padding: 30px;
background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
border-radius: 15px;
margin-bottom: 30px;
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.cta h2 {
color: #d44d6d;
margin-bottom: 20px;
}
.btn {
display: inline-block;
background-color: #d44d6d;
color: white;
padding: 15px 40px;
border-radius: 50px;
text-decoration: none;
font-weight: bold;
font-size: 1.2rem;
margin-top: 15px;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(212, 77, 109, 0.4);
}
.btn:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(212, 77, 109, 0.6);
}
.hashtags {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
margin-top: 30px;
}
.hashtag {
background-color: #e0e0e0;
padding: 8px 15px;
border-radius: 20px;
font-size: 0.9rem;
color: #666;
}
footer {
text-align: center;
padding: 20px;
color: #888;
font-size: 0.9rem;
}
@media (max-width: 768px) {
h1 {
font-size: 2rem;
}
.info-grid {
grid-template-columns: 1fr;
}
}
(繼續閱讀...)
文章標籤

SunnyYummy 發表在 痞客邦 留言(0) 人氣(1)

  • 個人分類:
▲top
  • 9月 12 週五 202504:19
  • 【新竹配鏡推薦】女兒升國中視力拉警報?帶她到竹北「阿法眼鏡 ARFA OPTICAL」,OAKLEY運動眼鏡開箱實戴!

阿法眼鏡店面環境

/* 全局样式 */
body {
font-family: "Microsoft JhengHei", "Heiti TC", "LiHei Pro", sans-serif;
line-height: 1.8;
color: #333;
background-color: #f8f9fa;
margin: 0;
padding: 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
/* 标题样式 */
h1 {
color: #2c3e50;
text-align: center;
margin-bottom: 30px;
padding-bottom: 15px;
border-bottom: 2px solid #eaeaea;
font-weight: 700;
}
/* 段落样式 */
p {
margin-bottom: 20px;
font-size: 16px;
text-align: justify;
}
/* 图片样式 */
img {
max-width: 100%;
height: auto;
display: block;
margin: 25px auto;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
img:hover {
transform: translateY(-3px);
box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
/* 强调文本 */
.highlight {
background: linear-gradient(transparent 60%, rgba(255, 222, 125, 0.5) 40%);
font-weight: 600;
padding: 0 2px;
}
/* 店铺信息样式 */
.store-info {
background-color: #f8f9fa;
padding: 20px;
border-radius: 8px;
margin-top: 30px;
border-left: 4px solid #3498db;
}
.store-info h3 {
color: #2c3e50;
margin-top: 0;
}
/* 标签样式 */
.tags {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 20px;
}
.tag {
background-color: #eaf2f8;
color: #3498db;
padding: 5px 12px;
border-radius: 20px;
font-size: 14px;
}
/* 响应式设计 */
@media (max-width: 768px) {
.container {
padding: 20px;
}
body {
padding: 10px;
}
img {
margin: 15px auto;
}
}
/* 分隔线样式 */
.divider {
height: 1px;
background: linear-gradient(to right, transparent, #ddd, transparent);
margin: 30px 0;
}
/* 引文样式 */
.quote {
border-left: 4px solid #3498db;
padding-left: 20px;
font-style: italic;
color: #555;
margin: 25px 0;
}
(繼續閱讀...)
文章標籤

SunnyYummy 發表在 痞客邦 留言(0) 人氣(20)

  • 個人分類:
▲top
  • 9月 09 週二 202520:50
  • 【台北中山區美食】先發炙人:不只是居酒屋!邊吃串燒邊打電動,超酷大富翁餐桌讓聚會氣氛High到最高點!

先發炙人店內環境

/* --- 整體頁面與字體設定 --- */
body {
margin: 0;
padding: 0;
background-color: #f8f9fa; /* 淺灰色背景,突顯文章區塊 */
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft JhengHei", "PingFang TC", "Noto Sans TC", sans-serif;
color: #333;
line-height: 1.8; /* 增加行高,提升閱讀舒適度 */
}
/* --- 文章容器 --- */
.blog-post {
max-width: 800px; /* 文章最大寬度 */
margin: 40px auto; /* 上下邊距40px,左右自動置中 */
padding: 40px;
background-color: #ffffff;
border-radius: 12px; /* 圓角 */
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* 細緻的陰影 */
}
/* --- 段落樣式 --- */
.blog-post p {
font-size: 17px;
margin-bottom: 1.5em; /* 段落下方間距 */
}
/* --- 圖片樣式 --- */
.blog-post img {
max-width: 100%; /* 響應式圖片 */
height: auto;
display: block;
margin: 20px auto; /* 圖片上下留白並置中 */
border-radius: 8px; /* 圖片圓角 */
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* 圖片陰影 */
transition: transform 0.3s ease;
}
.blog-post img:hover {
transform: scale(1.02); /* 滑鼠懸停時輕微放大 */
}
/* --- 處理多張圖片並排的段落 --- */
.image-gallery {
display: flex; /* 使用 Flexbox 佈局 */
gap: 15px; /* 圖片間的空隙 */
flex-wrap: wrap; /* 如果空間不夠則換行 */
}
.image-gallery img {
flex: 1; /* 讓圖片平均分配寬度 */
min-width: 200px; /* 圖片最小寬度,防止過度壓縮 */
margin: 0; /* 清除原本的 margin */
}
/* --- 章節標題樣式 (原本是 ▶ 開頭的段落) --- */
.blog-post h2 {
font-size: 24px;
font-weight: bold;
color: #d9534f; /* 醒目的紅色系 */
margin-top: 40px;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 2px solid #f0ad4e; /* 搭配橘黃色底線 */
}
/* --- 強調文字樣式 --- */
.blog-post strong {
color: #e56717; /* 亮橘色,突顯重點 */
font-weight: 600;
}
/* --- 店家資訊區塊 --- */
.store-info {
background-color: #fffaf0; /* 溫暖的米黃色背景 */
border-left: 5px solid #f0ad4e; /* 左側有橘黃色標示線 */
padding: 20px;
margin-top: 30px;
border-radius: 8px;
font-size: 16px;
line-height: 2; /* 增加行高讓資訊更清晰 */
}
.store-info p {
margin: 0;
}
(繼續閱讀...)
文章標籤

SunnyYummy 發表在 痞客邦 留言(0) 人氣(0)

  • 個人分類:
▲top
  • 8月 28 週四 202521:09
  • 這是一場可以讓孩子徹底放電、又能接觸古典樂的魔法音樂會,我們家強烈推薦!💯

金喇叭2025卡通大冒險宣傳圖片

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
color: #080809;
background-color: #ffffff;
line-height: 1.6;
padding: 20px;
max-width: 800px;
margin: 0 auto;
}
.container {
background-color: #fff;
border-radius: 12px;
padding: 25px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.header-image {
width: 100%;
height: auto;
border-radius: 8px;
margin-bottom: 20px;
}
.recommendation {
font-size: 18px;
margin-bottom: 25px;
line-height: 1.7;
}
.section-title {
display: flex;
align-items: center;
margin: 25px 0 15px;
font-size: 18px;
font-weight: 600;
}
.emoji {
margin-right: 8px;
width: 20px;
height: 20px;
vertical-align: middle;
}
.schedule {
margin-left: 20px;
margin-bottom: 12px;
}
.schedule-item {
display: flex;
align-items: center;
margin-bottom: 10px;
padding: 8px 0;
}
.schedule-date {
font-weight: 600;
min-width: 80px;
}
.schedule-location {
margin-left: 10px;
}
.new-tag {
background-color: #ff6b6b;
color: white;
font-size: 12px;
padding: 2px 6px;
border-radius: 4px;
margin-left: 8px;
}
.link-section {
margin: 20px 0;
padding: 15px;
background-color: #f8f9fa;
border-radius: 8px;
}
.link-title {
display: flex;
align-items: center;
margin-bottom: 10px;
font-weight: 600;
}
.ticket-link {
color: #0064d1;
text-decoration: none;
font-weight: 600;
word-break: break-all;
}
.ticket-link:hover {
text-decoration: underline;
}
.content-image {
max-width: 100%;
height: auto;
border-radius: 8px;
margin: 15px 0;
}
.content-text {
margin-bottom: 15px;
line-height: 1.7;
}
.highlight {
font-weight: 600;
color: #e63946;
}
@media (max-width: 600px) {
body {
padding: 15px;
}
.container {
padding: 15px;
}
.schedule-item {
flex-direction: column;
align-items: flex-start;
}
.schedule-location {
margin-left: 0;
margin-top: 5px;
}
}
(繼續閱讀...)
文章標籤

SunnyYummy 發表在 痞客邦 留言(0) 人氣(1)

  • 個人分類:
▲top
«123...13»

參觀人氣

  • 本日人氣:
  • 累積人氣:

留言板

熱門文章

  • (43)夾娃娃挑戰樂趣無窮!在桃園夾樂福親子樂園裝滿購物車
  • (13)## 雷根糖變湯?挑戰你的味蕾極限!😱 「吃貨們」這次玩真的,保證讓你看到臉歪!
  • (37)挖到寶!台中清水服務區7-11驚見『巨無霸草莓冰糖葫蘆』,冷凍口感太驚艷!
  • (42)【亞米媽媽帶妳吃】發現新大陸!🔥 超好玩「凹窩OWL無人拉麵」24小時自助煮麵初體驗!配料加到飽太佛心!
  • (6)亞米媽媽的驚喜!Sunny Yummy 最新 LINE 貼圖「雪球軟糖」&「端午包粽款」來啦!(還有 YT 限定抽獎喔!)
  • (24)音樂魂爆發!亞米爸爸帶隊挑戰苗栗「貓裏喵」巨大薩克斯風溜滑梯,差點卡關回不來?
  • (15)帶回7大神秘土產!女兒們爆笑試吃實錄!
  • (10)亞米媽媽的OREO奇幻旅程:大陸限定口味全家試吃大揭秘!
  • (31)【盈盈開箱】毛爸媽天堂!桃園「光66寵物百貨批發倉」初體驗🛒 Cooper伙食大補給,MIT好物挖不完!(feat. 恬恬 & Paula)
  • (17)【新北桃園家具探店】尋找命定沙發之旅! 開箱愛莎家居37年沙發工廠

最新文章

  • 12/28 樹林藝文中心演藝廳見!SunnyYummy 全家參加「銅管村嘉年華」
  • SunnyYummy 決定要去參加一場超棒的 「惜惜二手創意市集」 啦!
  • 【亞米一家GO】新竹小叮噹科學園區兩天一夜!超爆笑滑雪特訓+生活大師會館住宿心得,新手也能變身滑雪高手?
  • 【台北南港美食】北流卡夫卡 Kafka by the TMC|音樂迷必朝聖!超浮誇CD牆、脆皮德國豬腳必吃,太嗨啦!(feat. 亞米&安娜)
  • 媽媽們快收藏!板橋最新放電天堂「花語森林」
  • 生日月的奢華饗宴:同心鮨 Omakase 體驗
  • 下雨天、大熱天都不怕!苗栗「尚順育樂天地」全台最大室內樂園玩瘋了!VR、魔法世界、侏羅紀探險從1樓玩到6樓!
  • 【亞米媽媽開箱】家有考生必備!ROPET洛比AI陪伴寵,讓孩子讀書不再孤單的超萌療癒小物!
  • 桃園親子景點|帶亞米安娜重溫童年!追風奇幻島【桃堡樂園】百萬球池、魔鬼滑梯玩瘋了!媽媽放電首選!
  • 【亞米媽媽開箱】解救媽媽的終極變形包!NICHE樂奇天鷹座,從女兒書包到單車旅行一包搞定!

動態訂閱

文章精選

誰來我家

個人資訊

SunnyYummy
暱稱:
SunnyYummy
分類:
生活綜合
好友:
累積中
地區:

文章分類

  • 未分類文章 (1)

文章搜尋