/*————————————————————————移动端————————————————————————*/
.container .content {
    width: 100%;
    height: 100%;
    margin: auto;
    padding: 10px 10px;
}

.header{
    display: none;
}

.container .content .piece .success {
    width: 66px;
    height: 66px;
    margin: auto;
}

.title-nth-child {
    margin-top: 70px;
}

.container .content .piece .consultation {
    position: absolute;
    right: 0px;
    top: 140px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    z-index: 9;
}

.container .content .piece .consultation .btn {
    margin-right: 15px;
}

.container .content .piece .consultation .btn:last-child {
    margin-right: 0;
}

.container .content .piece .success-title {
    text-align: center;
    font-weight: 700;
    font-size: 25px;
    margin-top: 10px;
}

.container .content .piece .table .item p {
    font-size: 12px;
}

.icon {
    width: 100px;
    margin-top: 15px;
    margin-bottom: 30px;
    display: none;
}

.other {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
    grid-auto-rows: 140px;
    gap: 20px;
}

.other .item img {
    width: 100%;
    height: 80px;
}

.other .item p {
    text-align: center;
    position: absolute;
    bottom: 15px;
    font-size: 12px;
}

.modal {
    z-index: 999;
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: hsla(240, 4%, 10%, 0.5);
    backdrop-filter: blur(10px);
    transition: top 0.4s;
    -webkit-transition: top 0.4s;
    -moz-transition: top 0.4s;
    -ms-transition: top 0.4s;
    -o-transition: top 0.4s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal .close-content{
    width: 300px;
    display: flex;
    justify-content: right;
}

.modal .close{
    width: 20px;
    height: 20px;
}

.modal .modalContent {
    width: 260px;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.modal .modalContent img{
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}

.modal .modalContent p{
    text-align: center;
    margin-top: 10px;
}