html {
    font-size: 16px;
}

body {
    margin: auto;
    display: flex;
    flex-direction: column;
    font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
    min-height: 100vh;
    cursor: default;
    width: auto;
    box-sizing: border-box;
    background-color: #f4f5f7;
}

/*主体内容*/
.main-content {
    display: flex;
    flex-direction: column;
    width: 800px;
    margin: 0 auto;
    min-height: 100vh;
    background-color: #ffffff;
}

/***********女人味吸顶导航栏*******************/
.nvrenwei_daohang {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nvrenwei_daohang img {
    display: block;
    width: 100%;
    height: auto;
}

.nvrenwei_kaijiangqu {
    flex: 0 0 auto;
    margin-left: 0;
    width: 100%;
    height: 60px;
    background-color: #ffd64a;
}

/***********导航栏下面的第一个图片*************************/
.nvrenwei_img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nvrenwei_img img {
    max-width: 100%;
    height: auto;
    display: block;
}

/***********资料区*******************/
.ziliaoqu {
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.ziliaoqu_title {
    background-color: #ff69b4;
    color: #ffffff;
    font-weight: 700;
    padding: 2px 4px;
    font-size: 32px;
    text-align: center;
}

.ziliaoqu_content {
    padding: 10px 12px 12px;
    font-size: 24px;
    line-height: 1.6;
    color: #333333;
    background-color: #5a5858;
    text-align: center;
}

.ziliaoqu_content p {
    margin: 0 0 4px;
}

.ziliaoqu_content p:last-child {
    margin-bottom: 0;
}