	html,
    body {
        width: 100%;
        height: 100%;
    }
    
    .main .inner_box {
        width: 900px;
        height: 800px;
        background: #edf8f3;
        border-radius: 10px;
        position: fixed;
        top: 54%;
        left: 50%;
        transform: translate(-50%, -50%);
        /*position: relative;*/
        box-shadow: 0 2px 7px #ddd;
        z-index: 9999;
    }

    .main .inner_box .header {
        width: 100%;
        height: 50px;
        background: #fff;
        box-shadow: 0 5px 10px -2px #f1f1f1;
        position: relative;
    }

    .main .inner_box .header p {
        font-size: 20px;
        text-align: center;
        line-height: 50px;
        color: #333;
    }

    .main .inner_box .header button {
        padding: 0 5px;
        font-size: 15px;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }

    .main .inner_box .main_box {
        padding: 20px;
        box-sizing: border-box;
        height: 680px;
        overflow: auto;
    }
    .main .inner_box .info .time{
        text-align: center;
        color: gray;
        font-size: 15px;
        margin-bottom: 16px;
    }
    .main .inner_box .info .wrapper {
        width: 100%;
        overflow: hidden;
    }

    .main .inner_box .info .wrapper .text_box {
        border-radius: 25px 25px 0 25px;
        background-color: #fff;
        color: #fff;
        padding: 10px;
        margin-bottom: 20px;
        max-width: 35%;
    }

    .main .inner_box .info .wrapper .msg_main {
        width: 100%;
    }

    .main .inner_box .info .wrapper img {
        width: 33px;
        height: 33px;
        border-radius: 50%;
        margin-top: 6px;
        margin-left: 10px;
    }

    .main .inner_box .info .wrapper.ans img {
        margin-right: 10px;
        margin-left: 0;
    }

    .main .inner_box .info .wrapper p {
        font-size: 15px;
        color: #333;
    }

    .main .inner_box .info .wrapper.ans p {
        color: red;
    }
    .main .inner_box .btm {
        width: 100%;
        height: auto;
        padding: 15px 0;
        background: #fff;
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .main .inner_box .btm .ipt_box {
        width: 87%;
        height: 40px;
        border-radius: 20px;
        background: #fbf9f9;
        border: 1px solid #eee;
        display: flex;
        align-items: center;
    }

    .main .inner_box .btm .ipt_box .ipt{
        height: 35px;
        width: 95%;
        border: 0;
        outline: none;
        margin-left: 15px;
        background: #fbf9f9;
    }

    .main .inner_box .btm button {
        width: 60px;
        height: 35px;
        border: 0;
        outline: none;
        background: red;
        color: red;
        text-align: center;
        line-height: 35px;
        font-size: 15px;
        color: #fff;
        border-radius: 5px;
        cursor: pointer;
    }
    
    .main .inner_box .goods_info {
        width: 90%;
        height: 100px;
        background: #fff;
        border-radius: 10px;
        position: fixed;
        bottom: 90px;
        left: 10px;
        display: flex;
        align-items: center;
        z-index: 9;
    }

    .main .inner_box .goods_info img.goods_img {
        width: 80px;
        height: 80px;
        margin: 0 20px;
    }

    .main .inner_box .goods_info .name_price p:first-child {
        width: 200px;
        font-size: 16px;
        color: #333;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .main .inner_box .goods_info .name_price p:last-child {
        font-size: 15px;
        color: red;
        margin-top: 37px;
    }

    .main .inner_box .goods_info img.cancel_img {
        width: 30px;
        height: 30px;
        position: absolute;
        top: 10px;
        right: 20px;
        cursor: pointer;
        transform: rotate(0deg);
        transition: all ease 1s;
    }

    .main .inner_box .goods_info button {
        width: 70px;
        height: 25px;
        border: 0;
        outline: none;
        background: red;
        border-radius: 5px;
        color: #fff;
        font-size: 13px;
        text-align: center;
        line-height: 25px;
        position: absolute;
        bottom: 10px;
        right: 10px;
        cursor: pointer;
    }
    
    .main .inner_box .info .text_box .goods img.goods_img {
        width: 100px;
        height: 80px;
        display: block;
        border-radius: 0;
        margin-top: 0;
    }

    .main .inner_box .info .text_box .goods p {
        font-size: 15px;
        float: none;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin-left: 10px;
    }