* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.archive-page {
    background-color: #fcf8f2;
    font-family: "Microsoft YaHei", sans-serif;
    padding: 20px 16px;
    margin-top: 100px;
    color: #6b4226;
}

.main-title {
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    position: relative;
    margin-bottom: 8px;
}
.heart-top {
    position: absolute;
    right: 8%;
    top: -6px;
    font-size: 26px;
    color: #e65555;
}

.sub-title {
    text-align: center;
    font-size: 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.sub-title .heart {
    color: #e65555;
    font-size: 18px;
}

.pet-img-box {
    width: 100%;
    position: relative;
    margin-bottom: 12px;
}
.pet-img {
    width: 100%;
    display: block;
}

.sticker {
    position: absolute;
    background: #ffddb3;
    border: 3px solid #f2b872;
    border-radius: 10px;
    padding: 6px 10px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}
.sticker-card {
    top: 12%;
    left: 4%;
    transform: rotate(-12deg);
}
.sticker-vaccine {
    bottom: 8%;
    left: 2%;
    transform: rotate(-8deg);
}
.sticker-medicine {
    bottom: 10%;
    right: 4%;
    transform: rotate(10deg);
    width: 60px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    padding: 0;
    background: transparent;
    border: none;
}
.sticker-stethoscope {
    top: 6%;
    right: 6%;
    font-size: 42px;
    background: transparent;
    border: none;
    transform: rotate(15deg);
}

.desc-text {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.func-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}
.func-card {
    background: #ffeeda;
    border-radius: 16px;
    padding: 18px 8px;
    text-align: center;
}
.func-icon {
    font-size: 36px;
    margin-bottom: 8px;
}
.func-name {
    font-size: 16px;
    font-weight: bold;
}

.footer-text {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 50px;
}
.footer-text .line {
    display: inline-block;
    width: 30px;
    height: 2px;
    background: #6b4226;
    vertical-align: middle;
    margin: 0 8px;
}