@media screen and (min-width: 970px) {
    .header {
        position: fixed;
        height: 110px;
        background-color: #fff;
    }

    .index-link::after {
        width: 100%;
    }

    .container {
        padding-top: 110px;
    }

    .top-container {
        width: 100%;
        background-color: rgba(226, 148, 99);
    }

    .content-container {
        padding: 48px 16px;
        margin: 0 auto;
        max-width: 1492px;
    }

    .top-content {
        display: flex;
        justify-content: space-between;
    }

    .introduce-container {
        width: 52%;
    }

    .introduce-container h1 {
        font-size: 56px;
        line-height: 1.2;
        font-weight: 500;
        color: #fff;
    }

    .introduce-text {
        font-size: 18px;
        font-weight: 400;
        line-height: 150%;
        color: #fff;
        margin-top: 60px;
    }

    .introduce-img {
        width: 38%;
        display: block;
        position: relative;
    }

    .introduce-img img {
        width: 80%;
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0 0 10px 10px rgba(226, 148, 99);
    }

    .people-content {

        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .people-item {
        width: 46%;
        margin-bottom: 40px;
    }

    .name {
        font-size: 23px;
        font-weight: 600;
        line-height: 140%;
        color: #e29463;
        text-align: center;
    }

    .position {
        margin: 10px 0 20px;
        text-align: center;

    }

    .introduce {
        font-size: 18px;
        font-weight: 400;
        line-height: 150%;
        color: #0B0C10;
        margin-top: 22px;
        text-align: justify;
    }
}

@media screen and (max-width: 969px) {
    .header {
        position: fixed;
        background-color: #fff;
    }

    .index-link::after {
        width: 100%;
    }

    .container {
        padding-top: 64px;
    }

    .top-container {
        width: 100%;
        background-color: rgba(226, 148, 99);
    }

    .content-container {
        padding: 48px 16px;
        margin: 0 auto;
        max-width: 1492px;
    }

    .top-content {
        display: flex;
        justify-content: space-between;
    }

    .introduce-container {
        width: 100%;
    }

    .introduce-container h1 {
        font-size: 40px;
        line-height: 1.2;
        font-weight: 500;
        color: #fff;
    }

    .introduce-text {
        font-size: 18px;
        font-weight: 400;
        line-height: 150%;
        color: #fff;
        margin-top: 60px;
    }

    .introduce-img {
        width: 38%;
        display: none;
        position: relative;
    }

    .introduce-img img {
        width: 80%;
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0 0 10px 10px rgba(226, 148, 99);
    }

    .people-content {

        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .people-item {
        width: 80%;
        margin-bottom: 40px;
    }

    .name {
        font-size: 23px;
        font-weight: 600;
        line-height: 140%;
        color: #e29463;
        text-align: center;
    }

    .position {
        margin: 10px 0 20px;
        text-align: center;

    }

    .introduce {
        font-size: 18px;
        font-weight: 400;
        line-height: 150%;
        color: #0B0C10;
        margin-top: 22px;
        text-align: justify;
    }
}