/* 新增的banner */
.new_banner {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.new_borderLike {
    /* background: #FFFFFF; */
    /* padding-top: 20px; */
}

.logo {
    margin-right: 5px;
}

/* 评论区 */
.talk {
    width: 100%;
    padding: 0 20px;
    /* box-sizing: border-box; */
}

/* 输入框 */
.talk_input {
    width: 100%;
    border-radius: 45px;
    height: 50px;
    background: #F0F0F0;
    border: 0;
    padding: 0 25px;
    box-sizing: border-box;
    font-size: 16px;
    margin-bottom: 20px;
}

.talk_input:focus {
    outline: 0;
}

/* 按钮框 */
.talk_buttonbox {
    display: flex;
}

.talk_button {
    display: flex;
    /* justify-content: space-between; */
    width: 110px;
    margin: auto 0;
    margin-right: 20px;
}

.talk_button img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.talk_button>div {
    text-align: center;
    line-height: 30px;
    font-family: Source Han Sans, Source Han Sans;
    color: #3D3D3D;
}

.talk_button input {
    width: 24px;
    height: 24px;
    border-radius: 0;
    margin: auto;
    margin-right: 10px;
}

/* 发表评论按钮 */
.talk_dotalk {
    width: 100px;
    line-height: 42px;
    background: #F56450;
    border-radius: 4px 4px 4px 4px;
    text-align: center;
    color: white;
    margin-left: 20px;
}

/* 评论区主体 */
.talk_talking {
    margin-top: 20px;
    padding: 20px 0;
    box-sizing: border-box;
    border-top: 1px solid #DDDDDD;
}

.talking_num {
    font-family: Source Han Sans, Source Han Sans;
    font-weight: 700;
    font-size: 20px;
    color: #888888;
    font-style: normal;
    text-transform: none;
    vertical-align: bottom;
}

.talking_num>span:nth-of-type(1) {
    font-size: 22px;
    color: #3D3D3D;
}

/* 一条评论 */
.talking_item {
    display: flex;
}

.userAvatar {
    width: 64px;
    height: 64px;
}

.userAvatar img {
    width: 100%;
    height: 100%;
}


/* 分享 */
/* 弹框背景 */
.share_modal {
    /* background-color: #fefefe; */
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}



/* 分享 */
.the_share {
    position: relative;
}

.the_share:hover .share_modal-content {
    display: block;
}

/* 弹框内容 */
#share_imgbox img {
    width: 70%;
    height: 70%;
    position: relative;
    top: -30px;
}

.share_modal-content {
    display: none;

    height: 280px;
    background: url(./section/bg.png) no-repeat;
    background-size: 100%;
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 300px;
    max-width: 300px;
    text-align: center;

    position: absolute;
    bottom: -320px;
    left: 50%;
    transform: translateX(-50%);
}

.share_titlebox {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

.share_titlebox img {
    width: 30px;
    height: 30px;
    display: block;
    margin: 0 auto;
    margin-bottom: 5px;
}

.share_titlebox>span {
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    display: block;
    width: 22%;
}

#share_imgbox {
    display: none;
}

#share_imgbox>div {
    color: gray;
}

/* 关闭按钮 */
.share_close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.share_close:hover,
.share_close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* 按钮测试样式 */
#share_button {
    padding: 30px 50px;
    margin: auto;
    display: block;
}

#share_do {
    width: 50px;
    height: 25px;
}

.share_title {
    font-size: 18px;
    padding-top: 10px;
    margin-bottom: 20px;
    width: auto;
    text-align: left;
}