/* **************************************** */
.footer {
    width: 1200px;
    /*height: 236px;*/
    box-sizing: border-box;
    margin: 0 auto;
    padding: 25px;
    /*padding-top: 176px;*/
    clear: both;

    /*height: 30px;*/
    /*position: fixed;*/
    /*bottom: 0;*/
    /*left: 0;*/
    /*right: 0;*/
    /*text-align: center;*/
    /*padding: 20px;*/
    /*line-height: 30px;*/
    /*;*/
    /*font-size: 14px;*/
    /*color: #B8BABD;*/
    /*letter-spacing: 0;*/
    /*font-weight: 400;*/
}

.footer p {
    font-size: 14px;
    color: #B8BABD;
    letter-spacing: 0;
    font-weight: 400;
    text-align: center;

}

.feedback {
    position: fixed;
    right: 60px;
    bottom: 60px;
    background: #FFFFFF;
    box-shadow: 0 2px 8px 0 rgba(166, 171, 188, 0.30);
    border-radius: 6px;
    display: block;
    color: #000000;
    height: 125px;
}

.feedback-a {
    word-wrap: break-word;
    /*英文的时候需要加上这句，自动换行*/
    /*自测了这句话没啥用*/
    writing-mode: vertical-rl;
    /*从左向右 从右向左是 writing-mode: vertical-rl;*/
    writing-mode: tb-rl;
    /*IE浏览器的从左向右 从右向左是 writing-mode: tb-rl；*/
    text-align: center;
    padding: 0px;
    display: flex;
    -webkit-display: flex;
    flex-direction: column;
    /* align-content: center; */
    /* vertical-align: middle; */
    justify-content: center;


    font-size: 14px;
    color: #000000;
    letter-spacing: 0;
    line-height: 48px;
    font-weight: 400;

    width: 48px;
    height: 80px;
    display: block;
}

.feedback-img {
    width: 48px;
    height: 40px;
}

.feedback-span {
    writing-mode: vertical-lr;
    writing-mode: tb-lr;
    display: block;
    vertical-align: middle;
    line-height: 48px;
    padding-top: 10px;
    padding-bottom: 15px;
}

/* *************footer end*************************** */

@media screen and (max-width: 1200px) {
    .footer {
        width: 100%;
        min-width: 1000px;
    }
}