.img1 {
    display: flex;
    justify-content: center;
}

.img2 {
    display: flex;
    justify-content: center;
    margin: 23px 0px 12px 0px;
}

.price2 {
    margin: 0px 0px;
}

.img3 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 15px 42px 15px;
    flex-basis: 100%;
    flex-direction: column;
}

.priceTable {
    border: solid rgb(234, 84, 4) 1px;
    /*设置表格外边框*/
    border-radius: 5px;
    /*设置表格外边框圆角*/
    width: 85%;
    margin-bottom: 18px;
}

.priceTable th {
    border-right: solid rgb(234, 84, 4) 1px;
    /*设置表格单元格外边框，只设置右下边框*/
    border-bottom: solid rgb(234, 84, 4) 1px;
    padding: 8px;
    /*设置单元格内边距，单元格内容显得不拥挤*/
    text-align: center;
    /*单元格内容居中*/
    font-size: 28px;
    color: rgb(234, 84, 4);
}

.priceTable td {
    border-right: solid rgb(234, 84, 4) 1px;
    /*设置表格单元格外边框，只设置右下边框*/
    border-bottom: solid rgb(234, 84, 4) 1px;
    padding: 8px;
    /*设置单元格内边距，单元格内容显得不拥挤*/
    text-align: center;
    /*单元格内容居中*/
    font-size: 18px;
}

.priceTable thead {
    background-color: #dce9f9;
    /*设置表头背景色*/
}

.priceTable td:last-child,
.priceTable th:last-child {
    border-right: none;
    /*去掉表格每一行最后一列的右边框*/
}

.priceTable tr:last-child td {
    border-bottom: none;
    /*去掉最后一行中所有单元格的下边框*/
}


/*单元格设置圆角*/

.priceTable th:first-child {
    border-radius: 5px 0 0 0;
}

.priceTable th:last-child {
    border-radius: 0 5px 0 0;
}

.priceTable tr:last-child td:first-child {
    border-radius: 0 0 0 5px;
}

.priceTable tr:last-child td:last-child {
    border-radius: 0 0 5px 0;
}


/*鼠标移动至单元格，单元格高亮显示*/

.priceTable tr:hover {
    background: #fbf8e9;
}


/*分别设置每一行中单元格的宽度*/

.item1 {
    width: 32%;
}

.item2 {
    width: 45%;
}

.item3 {
    width: 18%;
}

.question {
    letter-spacing: 2px;
    line-height: 2;
}

@media screen and (max-width:1200px) {
    .img1,
    .price1 {
        width: 100%;
    }
}

@media screen and (min-width: 1200px) {
    .img1,
    .price1 {
        width: 100%;
    }
}


/* 未被访问的链接 */

.mentlist a:link {
    color: rgb(109, 117, 104);
    text-decoration: none;
}


/* 已被访问的链接 */

.mentlist a:visited {
    color: #00a4ff;
    text-decoration: none;
}