﻿body {
    font-family: "Hiragino Kaku Gothic ProN", "Helvetica Neue", Arial, sans-serif;
    margin: 10px 0;
    padding: 0;
    background: linear-gradient(135deg, #f5f7fa, #c0d6f6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    box-sizing: border-box;
    color: #444;
    animation: fadeIn 1s ease-in-out;
}

a {
    text-decoration: none;
}

.image-container {
    width: 96px;
    height: 96px;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    animation: fadeIn 1s ease-in-out;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-container {
    text-align: center;
    margin-bottom: 20px;
    padding: 0 15px;
    max-width: 600px;
    width: 90%;
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: break-word;
}

.text-container h1 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #1a237e;
    font-weight: bold;
    animation: fadeUp 1s ease-in-out;
}

.text-container p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    font-weight: bold;
    text-align: justify;
    animation: fadeIn 1.2s ease-in-out;
}

.button,
.second-button {
    width: 90%;
    margin: 0 auto;
    max-width: 600px;
    margin-top: 20px;
    padding: 16px;
    font-size: 18px;
    font-weight: bold;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0px 4px 10px rgba(26, 115, 232, 0.3);
    animation: floatButton 3s ease-in-out infinite;
}

.button:hover,
.second-button:hover {
    background-color: #0d47a1;
    transform: translateY(-2px);
}

.button:active,
.second-button:active {
    background-color: #0b3c91;
    transform: scale(0.98);
}

.second-image-container {
    margin-top: 30px;
    position: relative;
    width: 90%;
    max-width: 600px;
    animation: fadeIn 1.5s ease-in-out;
}

.second-image-container img {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.second-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    padding: 10px;
    box-sizing: border-box;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.second-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: pulse 2s infinite, floatButton 3s ease-in-out infinite;
}

.second-button img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* 动画 */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes floatButton {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .text-container h1 {
        font-size: 22px;
    }

    .text-container p {
        font-size: 14px;
    }

    .button,
    .second-button {
        font-size: 16px;
        padding: 14px;
    }

    .second-button img {
        width: 40px;
        height: 40px;
    }
}

.ys {
    font-size: 14px;
    margin-top: 2rem;
    color: #000;
    margin-bottom: 2rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.policy-content {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}


.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.story {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    padding: 40px;
    transition: all 0.3s ease;
}

.story:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.top_title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a73e8;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.top_title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #1a73e8;
    border-radius: 3px;
}

.textBlock01 {
    font-size: 16px;
    color: #444;
}

.textBlock01 ul {
    list-style-type: none;
    padding-left: 0;
}

.textBlock01 li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
    line-height: 1.8;
}

.textBlock01 li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-size: 24px;
    top: -5px;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #0e7b18;
    transform: translateX(-5px);
}

.back-link:before {
    content: "←";
    margin-right: 5px;
}

.section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a73e8;
    margin-bottom: 15px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.info-table th,
.info-table td {
    border: 1px solid #eee;
    padding: 12px 15px;
    text-align: left;
}

.info-table th {
    background-color: #f7f9fc;
    font-weight: 600;
    color: #1a73e8;
}

.info-table tr:hover {
    background-color: #f9f9f9;
}

.consent-box {
    background-color: #f5f7fa;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .container {
        margin: 20px auto;
    }

    .story {
        padding: 30px 20px;
    }

    .top_title {
        font-size: 24px;
    }

    .info-table th,
    .info-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .story {
        padding: 20px 15px;
    }

    .top_title {
        font-size: 22px;
    }

    .textBlock01 li {
        padding-left: 25px;
    }

    .info-table,
    .info-table thead,
    .info-table tbody,
    .info-table th,
    .info-table td,
    .info-table tr {
        display: block;
    }

    .info-table th {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .info-table tr {
        border: 1px solid #eee;
        margin-bottom: 10px;
    }

    .info-table td {
        border: none;
        position: relative;
        padding-left: 50%;
        text-align: left;
    }

    .info-table td:before {
        position: absolute;
        top: 12px;
        left: 12px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: 600;
        color: #1a73e8;
    }

    .info-table td:nth-of-type(1):before {
        content: "Collected Items";
    }

    .info-table td:nth-of-type(2):before {
        content: "Collection Purpose";
    }

    .info-table td:nth-of-type(3):before {
        content: "Storage Period";
    }
}



.story {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    padding: 40px;
    transition: all 0.3s ease;
}

.story:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.top_title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a73e8
;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.top_title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #1a73e8
;
    border-radius: 3px;
}

.textBlock01 {
    font-size: 16px;
    color: #444;
}

.textBlock01 ul {
    list-style-type: none;
    padding-left: 0;
}

.textBlock01 li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
    line-height: 1.8;
}

.textBlock01 li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a73e8
;
    font-size: 24px;
    top: -5px;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    color: #1a73e8
;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #0e7b18;
    transform: translateX(-5px);
}

.back-link:before {
    content: "←";
    margin-right: 5px;
}

.section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a73e8
;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .container {
        margin: 20px auto;
    }

    .story {
        padding: 30px 20px;
    }

    .top_title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .story {
        padding: 20px 15px;
    }

    .top_title {
        font-size: 22px;
    }

    .textBlock01 li {
        padding-left: 25px;
    }
}

/* 增加必要的样式 */
.section-highlight {
    background-color: #f8fff9;
    border-left: 4px solid #1a73e8
;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.accordion {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    background-color: #f9f9f9;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #eee;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: #f5f5f5;
}

.accordion-header:after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #1a73e8
;
}

.accordion-content {
    padding: 0px 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-active .accordion-header:after {
    content: "-";
}

.accordion-active .accordion-content {
    padding: 15px 20px;
    max-height: 1000px;
}
