.part {
    display: flex;
    margin: .96rem 0;
}

.part .img-box {
    width: 30%;
    height: 20%;
    border-radius: .512rem;
    overflow: hidden;
}

.part .img-box::before {
    padding-top: 100%;
}

.part-name {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: .64rem;
}

.part-name>p {
    font-size: 1.152rem;
    font-weight: 700;
    line-height: 1;
}

.part-name .type {
    font-size: .7rem;
    color: gray;
    background-color: #f0f0f0;
    margin-right: auto;
    padding: .384rem .96rem;
    border-radius: 6.4rem;
    text-transform: uppercase;
    font-weight: bold;
}

.part-name .star {
    margin-right: auto;
    padding: .384rem .96rem;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 6.4rem;
    display: flex;
    align-items: center;
    font-size: 1.088rem;
}

.part-name .star .iconfont {
    color: rgb(255, 196, 0);
    margin-right: .256rem;
}

.part-name .star img {
    width: 1.28rem;
    height: 1.28rem;
    margin-left: .512rem;
}

.detail {
    display: flex;
    flex-direction: column;
    row-gap: .96rem;
}

.detail>div {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 1px dashed #c6c6c8;
}

.detail>div .inf {
    width: 96%;
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    justify-content: space-between;
    padding: .384rem .64rem;
    font-size: 1.024rem;
    font-weight: 700;
    color: #666666;
}

.detail>div .inf span:last-child {
    color: #000;
    font-size: .832rem;
}

.detail>div .inf:last-child {
    border: 0;
}

.detail>div:last-child {
    padding: .384rem .64rem;
}


.detail>div:last-child h3 {
    font-size: 1.088rem;
    margin-bottom: .64rem;
}

.detail>div:last-child .text {
    text-indent: 2em;
    font-size: .896rem;
}

.buttons {
    margin: .96rem 0;
    display: flex;
    column-gap: .768rem;
}

.buttons a {
    flex: 1;
    padding: .64rem 0;
    display: flex;
    border-radius: .384rem;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: .896rem;
    column-gap: .32rem;
    font-weight: bold;
}

.buttons a>img {
    width: 1.28rem;
    height: 1.28rem;
}

.google {
    background-color: #000;
}

.ios {
    background-color: #2A73F5;
}

@media screen and (min-width:770px) {
    .part-name {
        justify-content: start;
        row-gap: 20px;
    }

    .part .img-box {
        width: 15%;
    }

    .part-name>p {
        font-size: 28px;
    }

    .part-name .type {
        padding: 6px 12px;
        font-size: 18px;
    }

    .part-name .star {
        padding: 5px 15px;
        font-size: 24px;
    }

    .part-name .star img {
        width: 24px;
        height: 24px;
    }

    .detail>div .inf {
        width: 100%;
    }

    .detail>div section {
        font-size: 24px !important;
    }

    .detail>div:last-child h3 {
        font-size: 28px;
    }

    .detail>div:last-child .text {
        font-size: 22px;
    }
}