*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'KaiTi', serif; /* 楷体，适合中文传统风格 */
}
body{
    background-color: #ffeff6;
    background-image: url("../image/bg.png");
    background-size: cover;
    background-repeat: no-repeat;
}
img{
    width: 100%;
    height: 100%;
}
a{
    text-decoration: none;
    color: #000;
}
.box {
    width: 640px;
    max-width: 100vw;
    margin: 0 auto;
    padding: 61px 0;
    box-sizing: border-box;
}

@media (max-width: 700px) {
    .box {
        width: 100vw;
        min-width: 0;
        padding: 20px 0;
    }
}

.title{
    width: 70%;
    margin: 13px auto;
}
.card {
    width: 200px;
    height: 99px;
    background-color: #fce4ec; /* 浅粉色背景 */
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header {
    position: absolute;
    top: -15px;
    background-color: #0070c0; /* 蓝色背景 */
    border-radius: 8px;
    padding: 4px 12px;
    width: 85px;
    text-align: center;
    color: white;
    font-size: 20px;
    font-weight: 600;
}
.women{
    background-color: #ff0095;
}

.content input {
    font-weight: bold;
    color: #b71c1c;
    border: none;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
.content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-input:focus {
    outline: none;
}
.form{
    display: flex;
    gap: 38px;
    width: 80%;
    margin: 0 auto;
}
.content input {
    font-weight: bold;
    color: #b71c1c; /* 深红色 */
    outline: none;
    text-align: center;
    background: #fce0ec;
    border-radius: 10px;
    font-size: 16px;
}
.content input::placeholder {
    color: #b71c1c;  /* 深红色 */
    opacity: 1;      /* 避免变浅 */
}
.btn a{
    padding: 11px;
    font-size: 18px;
    border-radius: 50px;
    width: 100%;
    height: 100%;
    border: 4px solid white;
    color: white;
    background: #ff7992;
    display: block;
    text-align: center;
}
.btn{
    animation: ands 1s linear infinite;
}
@keyframes ands {
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
}
.bg{
    width: 80%;
    margin: 0 auto;
    text-align: center;
    border: 5px solid #ff729f;
    border-radius: 5px;
}
.bg-title{
    background: #ff729f;
    font-size: 25px;
    color: white;
    padding: 11px 0;
}
.bg-flex{
    display: flex;
    justify-content: space-between;
}
.bg-flex .nan, .nv{
    width: 30%;
    padding: 22px 0;
}
.nan{
    background: #5cb8ff;
    border-radius: 0 50px 50px 0;
    text-align: right;
    position: relative;
}
.nv{
    background: #ff729f;
    border-radius: 50px 0 0 50px;
    text-align: left;
    position: relative;
}
.n1{
    background: #adcbff;
    color: white;
    text-align: center;
    padding: 10px;
    width: 35px;
    height: 34px;
    border-radius: 25px;
    position: absolute;
    right: 5px;
    top: 4px;
}
.n2{
    background: #fdacc6;
    color: white;
    text-align: center;
    padding: 10px;
    width: 35px;
    height: 34px;
    border-radius: 25px;
    position: absolute;
    left: 5px;
    top: 4px;
}
.bg-content{
    width: 70%;
    margin: 0 auto;
    text-align: left;
}
.bg-content-box div{
    background: #ff729f;
    border-radius: 50px;
    color: white;
    margin: 13px 0;
    line-height: 32px;
    letter-spacing: 10px;
    padding-left: 10px;
}
.analysis-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    padding: 20px;
    margin: 20px auto;
    position: relative;
    width: 300px;
    font-family: "Microsoft Yahei", sans-serif;
}
.ys{
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    margin: 19px;
    color: #ff92c8;
    font-weight: 600;
}



.container{
    width: 80%;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    margin-bottom: 24px;
}
.container-header {
    background-color: #d8a7e2; /* 紫色背景 */
    color: #fff; /* 白色文字 */
    padding: 10px;
    border-radius: 10px 10px 0 0; /* 顶部圆角 */
    margin-bottom: 12px;
    font-family: Arial, sans-serif;
}
.content-text p{
    filter: blur(4px);
}
.content-text{
    position: relative;
}
.container-btn{
    background: linear-gradient(359deg, #fe4ecd, #ffaace);
    display: flex;
    width: 81%;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50px;
    padding: 6px 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.container-btn-icon{
    width: 25px;
}
.content-text button{
    border: none;
    background: transparent;
    color: white;
    font-size: 15px;
    font-weight: 600;
}
.white-content{
    background: white;
    padding: 13px 0;
}
