﻿.main-zhibo{
    max-width: 1140px;
    margin: 20px auto;
    display: flex;
    flex-direction: row;
}

.main-zhibo .left-container{
    max-width: 40%;
    padding: 0 20px;
}

.main-zhibo .left-container .info-wrapper{
    background-color: #f3f3f3;
    padding: 10px 15px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.main-zhibo .left-container .info-wrapper .name{
    
}

.main-zhibo .left-container .info-wrapper .name h3{
   color: #4bc0bf;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
}

.main-zhibo .left-container .info-wrapper .name p{
    color: #333;
}

.main-zhibo .left-container .info-wrapper .avatar{
    
}

.main-zhibo .left-container .info-wrapper .avatar img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
}


.main-zhibo .left-container .talk-container{
    width: 100%;
    height: 480px !important;
    background-color: #f3f3f3;
    padding: 10px 20px;
}

.main-zhibo .left-container .talk-container .talk-wrapper{
    height:400px;
}


.main-zhibo .left-container .talk-container .talk-wrapper p{
    color: #7e5596;
    padding: 5px 0 0;
}

.main-zhibo .left-container .talk-container .talk-wrapper p span{
    color: orange;
}

.main-zhibo .left-container .talk-container .talk-wrapper p.tip{
    font-size: 13px;
    color: red;
}

.main-zhibo .left-container .talk-container .talk-wrapper .tip span{
    color: orange;
}

.main-zhibo .left-container .talk-container .talk-write{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.main-zhibo .left-container .talk-container .talk-write a{
    display: block;
    height: 42px;
    line-height: 42px;
    border-radius: 10px;
    background-color: #4bc0bf!important;
    color: #ffffff;
    width: 20%;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}

.main-zhibo .left-container .talk-container .talk-write input{
    width:70%;
    
}


.main-zhibo .right-container{
    max-width: 60%;
}

.main-zhibo .right-container .content-wrapper{
    height: 500px;
    background-color: #eee;
}

.main-zhibo .right-container .content-wrapper {
    max-width: 100%;
}

.presents{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.presents a{
    width:12.5%;
    padding: 0 2%;
}

.presents a img{
    max-width: 100%;
}

@media screen and (max-width:498px){
    .main-zhibo{
        flex-direction: column;
    }
    .main-zhibo .left-container,.main-zhibo .right-container{
        width: 100%;
        max-width: 100%;
        margin: 20px 0;
    }
    
    .main-zhibo .right-container .content-wrapper{
        height: auto;
    }
}