﻿html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", "WenQuanYi Micro Hei", "MiSans L3", "Segoe UI", sans-serif;
    background-color: #f5f5f5;
}

* {
    border: none;
    margin: 0;
    padding: 0;
    outline: none;
    font-size: 12px;
    color: #333333;
    letter-spacing: 1px;
}

.container {
    width: 100%;
    height: 100%;
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.header {
    width: 100%;
    padding: 10px;
    display: flex;
    box-sizing: border-box;
    background-color: #ffffff;
}

    .header a {
        display: block;
    }

        .header a img {
            width: 40px;
            display: block;
        }

    .header .search {
        width: 100%;
        margin-left: 10px;
        border: 1px solid #fd0000;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
    }

        .header .search button {
            width: 15px;
            height: 15px;
            margin-left: 10px;
            display: block;
            background: none;
        }

            .header .search button img {
                height: 100%;
                display: block;
            }

        .header .search input {
            width: 100%;
            padding: 5px 10px;
            height: 30px;
            line-height: 30px;
            flex: 1;
            display: block;
            border-radius: 10px;
            color: #fd0000
        }

            .header .search input::-webkit-input-placeholder {
                color: #fd0000;
            }

.content {
    width: 100%;
    flex: 1;
    overflow: auto;
}

.girl {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin: 10px 0;
    overflow: hidden;
    background-color: #ffffff;
    display: block;
    text-decoration: none;
}

    .girl .photo {
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.2s ease-in-out;
        display: grid;
        grid-template-columns: repeat(2, 5fr);
    }

        .girl .photo > img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
        }

    .girl .photo-detail {
        width: 100%;
    }

        .girl .photo-detail > img {
            width: 100%;
            display: block;
            margin: 10px 0;
        }

    .girl .profile {
        display: block;
    }

        .girl .profile span {
            color: #fd0000;
            display: contents;
        }

        .girl .profile .title {
            margin: 10px 0;
            font-size: 14px;
            font-weight: normal;
            display: flex;
            align-items: center;
            text-align: justify;
        }

            .girl .profile .title span {
                font-size: 18px;
            }

        .girl .profile .description {
            font-size: 12px;
            margin: 10px 0;
            line-height: 1.75;
            text-align: justify;
            vertical-align: middle;
        }

        .girl .profile .similar {
            font-size: 12px;
            margin: 10px 0;
            line-height: 1.75;
        }

            .girl .profile .similar a {
                display: block;
                color: #fd0000
            }

.page {
    width: 100%;
    font-size: 14px;
    margin: 10px 0;
    text-align: center;
    display: block;
    color: #cccccc;
}

.createTime {
    width: 100%;
    font-size: 12px;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    position: relative;
    color: #cccccc;
}

    .createTime::before, .createTime::after {
        content: "";
        width: calc(40% - 20px);
        height: 1px;
        display: block;
        background: #cccccc;
        position: absolute;
        top: 50%;
    }

    .createTime::before {
        left: 2.5%;
    }

    .createTime::after {
        right: 2.5%;
    }

.fotter {
    width: 100%;
    padding: 10px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

    .fotter a {
        font-size: 14px;
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        padding: 10px 20px;
        color: #fd0000;
        text-decoration: underline;
    }


.info {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    font-size: 16px;
}