* {
    /* 页面初始化 */
    margin: 0;
    padding: 0;
}

body {
    background-color: #f1f1f1;
}

.box {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.bai {
    width: 84%;
    height: auto;
    background-color: #fff;
    padding-top: 8%;
}

.zhutu {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 10%;
}

.img {
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.img>img {
    width: 100%;
    height: 40vh;
    object-fit: cover;
    border-radius: 10px;
}

.canshu {
    width: 50%;
    height: 40vh;
    padding: 2% 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.text {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
}

.jianjie {
    width: 12%;
    color: #666;
    font-size: 1vw;
}

.xinxi {
    width: 74%;
    color: #333;
    font-size: 1vw;
}

.text2 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dingzhi {
    width: auto;
    height: auto;
    color: #666;
    font-size: 1vw;
    font-weight: 400;
    margin-top: 1%;
}

.dingjia {
    color: #333;
    font-size: 1vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.Dividing {
    width: 100%;
    height: 1px;
    background-color: #d6d6d6;
    margin-top: 5%;
}

.h2 {
    font-size: 1.5vw;
    color: #333;
    text-align: center;
    margin-top: 3%;
}

.text3 {
    font-size: 1.5vw;
    color: #333;
}

.h3 {
    font-size: 1vw;
    color: #666;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
}

.text3 {
    font-size: 1.5vw;
    color: #333;
}

.tuwen {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3% 0;
}

.img1 {
    width: 80%;
    height: auto;
    vertical-align: middle;
    margin-bottom: 2%;
    text-align: center;
}

.img1>img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* 移动端适配 start */
@media (max-width: 768px) {
    .bai {
        width: 100%;
        padding-top: 20%;
    }

    .zhutu {
        flex-direction: column;
        padding: 0 5%;
    }

    .img {
        width: 100%;
        /* 图片占满宽度 */
        height: auto;
        /* 调整高度适配移动端 */
        margin-bottom: 0.5rem;
    }

    .img>img {
        height: 30vh;
    }

    .canshu {
        width: 100%;
        height: auto;
        padding: 0;
    }

    .text3 {
        font-size: 1.2rem;
    }

    .text {
        flex-direction: row;
        margin-top: 3%;
    }

    .jianjie {
        width: 10%;
        font-size: 1rem;
        margin-bottom: 2%;
    }

    .dingzhi {
        font-size: 1rem;
    }

    .xinxi {
        width: 100%;
        font-size: 1rem;
    }

    .text2 {
        margin: 5% 0;
    }

    .danwei {
        width: 10%;
        font-size: 1.2rem;
    }

    .jinqian {
        font-size: 1.5rem;
        width: auto;
    }

    .h2 {
        font-size: 1.2rem;
        margin-top: 8%;
    }

    .h3 {
        font-size: 0.9rem;
    }

    .tuwen {
        padding: 5% 0;
    }

    .img1 {
        width: 90%;
        height: auto;
        margin-bottom: 5%;
    }
}

/* 移动端适配 end */