
html {
    font-size: 62.5%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: "微软雅黑";
    font-size: 2rem; 
    color: #333;
}

.container {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom right, #00bfff, #19ff8c);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 24.8rem; 
    padding-top: 0.5rem; 
}

.member {
    margin: 0 auto;
    width: 80%;
    height: 36rem; 
    margin-top: 2rem; 
    padding: 3rem 2rem; 
    font-size: 2.4rem; 
    font-weight: bold;
    color: white;
    align-items: center;
    background-color: rgba(62, 62, 62, 0.3);
    border-radius: 0.5rem; 
    box-shadow: 0 0 1rem rgba(10, 10, 10, 0.3); 
}

.member img {
    display: inline-block;
    width: 25rem; 
    height: 25rem;
    border-radius: 8rem 0.5rem 8rem 0.5rem; 
    box-shadow: 0 0 1.5rem rgba(10, 10, 10, 0.3); 
}

.img-left {
    float: left;
    margin-right: 5rem; 
    margin-left: 4rem; 
}

.img-right {
    float: right;
    margin-left: 5rem; 
    margin-right: 4rem; 
}

#img-litter,
#img-litter1 {
    display: inline-block;
    position: relative;
    width: 10rem; 
    border-radius: 0;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    border: none;
    /* margin: auto 88px; */
}

#img-litter:hover {
    transform: scale(1.1);
    rotate: 10deg;
    transition: all 0.3s ease-in-out;
}

#img-litter1:hover {
    transform: scale(1.1);
    rotate: -10deg;
    transition: all 0.3s ease-in-out;
}

.text {
    display: inline-block;
    text-align: left;
    width: 48%;
    font-size: 1.8rem; 
    font-style: italic;
    color: white;
    padding: 1rem; 
    text-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.3);
    border: white 0.4rem dashed; 
    }

.text h2 {
    font-style: normal;
}

.text dd {
    padding: 0.5rem 0;
}

.footer {
    margin-top: 2rem;
    margin-bottom: -1.8rem; 
    background-color: #a29bfe;
    background-image: linear-gradient(103.3deg, #00bfff, #19ff8c);
    text-align: center;
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 550;
    border-radius: 0.8rem;
    box-shadow: 0 0 1rem rgba(10, 10, 10, 0.3); 
    padding: 0.8rem; 
}

/* 超小屏幕（手机，小于 576px） */
@media (max-width: 575.98px) {
   .member {
        width: 90%;
        height: auto;
        padding: 1.5rem;
    }

   .member img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto 1.5rem;
    }

   .img-left,
   .img-right {
        float: none;
        margin: 0;
    }

   .text {
        width: 100%;
        display: block;
        margin-bottom: 1.5rem;
    }
}


@media (min-width: 576px) and (max-width: 767.98px) {
   .member {
        width: 85%;
        height: auto;
        padding: 2rem;
    }

   .member img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto 2rem;
    }

   .img-left,
   .img-right {
        float: none;
        margin: 0;
    }

   .text {
        width: 100%;
        display: block;
        margin-bottom: 2rem;
    }
}


@media (min-width: 768px) and (max-width: 991.98px) {
   .member {
        height: auto;
    }

   .member img {
        width: 20rem;
        height: 20rem;
    }

   .text {
        width: calc(100% - 50rem);
    }
}


@media (min-width: 992px) and (max-width: 1199.98px) {
   .member img {
        width: 22rem;
        height: 22rem;
    }

   .text {
        width: calc(100% - 50rem);
    }
}


@media (min-width: 1200px) {
   .member {
        max-width: 1200px;
    }
}    