.content .title{
    font-weight: 700;
    font-size: 20px;
    margin: 10px auto;
}
.desc li{
padding: 5px 0px;
}
.desc ol,.desc ul{
padding: 5px 30px;
}
/* img{
    width: 100%;
    height: 100%;
} */
.mayLike{
    max-width: 400px;
    /* margin-top: 100px; */
    /* border: 1px solid ; */
}
.mayLike-item{
    display: inline-block;
    max-width: 380px;
    margin: 5px 10px;
}
.mayLike-header{
    margin: 20px 10px;
    font-weight: 600;
    font-size: 18px;
}
.mayLike-type{
    font-weight: 600;
    color: #17a2b8;
}
.mayLike-title{
    font-weight: 600;
    font-size: 16px;
}
/* .mayLike-item img{
    max-height: 300px;
} */
.shareBox {
    background-color: #14cccc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    width: 100%;
    border-left: 20px solid #0D1F4B ;
    border-right: 20px solid #0D1F4B ;
    border-top: 30px solid transparent;
    /* 上边框透明 */
    border-bottom: 30px solid transparent
}
.shareBox img{
    width: 40px;
    height: 40px;
    margin-top: 5px;
}

.shareBox a{
    padding: 0 0.2rem;
}

.share_p{
    font-size: 18px;
    padding-left: 5px;
    font-weight: 600;
}

.share {
    padding: 0 5px;
}
p{
    margin: 15px 0;
    text-align: justify;
}

@media screen and (min-width: 1200px) {
    img{
        width: 100%;
        height: 100%;
    }
    main{
        max-width: 1200px;
        margin: 0 auto;
        padding: 5px;
        /* display: flex; */
        /* flex-direction: column; */
        /* justify-content: space-between; */
    }
    .content{
        /* max-width: 800px; */
    }

    .mayLike{
        max-width: none;
    }

    .mayLike-title{
        height: auto;
        min-height: 48px;
        /* 高度自适应 */
        overflow: hidden;
        /* 控制元素溢出部分不显示 */
        text-overflow: ellipsis;
        /* 当文字超出时显示省略号 */
        display: -webkit-box;
        /* 将元素作为弹性伸缩盒子模型处理 */
        -webkit-line-clamp: 2;
        /* 限制最多显示两行文本 */
        -webkit-box-orient: vertical;
    }

    .mayLike-item{}
    
    
    .mayLike img{
    
    }
}
@media screen and (max-width: 768px) {
    main{
        margin-top: 60px;
        padding: 5px;
    }
    .content{
        width: 100%;
    }
    .pc{
        display: none;
    }
    header{
        text-align: center;
        width: 100%;
        height: 60px;
        top: 0;
        position: fixed;
        background-color: #fff;
    }
    .header_title{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 15px;
    }
    .typeList{
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        z-index: 1000;
        background-color: #fff;
        /* display: none; */
    }
    .type{
        display: flex;
        padding: 10px 15px;
        border-bottom: 1px solid #ddd;
    }
    header input{
        display: none;
    }
    main img{
        width: 100% !important;
        height: 100% !important;
    }

    .mayLike img{
        width: 100%;
        height: 100%;
    }
    
}
.comment {
  padding: 20px;
}

.comment .comment-content {
  margin: auto;
  max-width: 1218px;
  background: linear-gradient(180deg, #15263B, rgb(8, 6, 6));
  background-color: #605AFF;
  padding: 10px;
  border: 2px solid #fff;
  border-radius: 8px;
}

.comment>.comment-content>.star>img {
  cursor: pointer;

}

.comment .comment-content .star img {
  width: 30px;
  height: 30px;
}

.comment .comment-content .title {
  color: #fff;
}

.comment .comment-content .input-name input {
  width: 220px;
  height: 40px;
  outline: none;
  border: none;
  box-sizing: border-box;
  color: #121212;
  border-radius: 4px;
  margin: 10px 0 10px 0;
  padding: 8px;
}

.comment .comment-content .input-name input::placeholder {
  color: #65581d;
}

.comment .comment-content .input-content textarea {
  outline: none;
  border: none;
  box-sizing: border-box;
  color: #121212;
  margin: 10px 0 10px 0;
  border-radius: 4px;
  font-size: 18px;
  padding: 8px;
  width: 90%;
}

.comment .comment-content .input-content textarea::placeholder {
  color: #65581d;
}

.comment .comment-content .button button {
  width: 100px;
  height: 34px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(180deg, #F7A465, #F5D847);
  color: #fff;
  text-shadow: 2px 2px gray;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
}

.comment .comment-record {
  margin-top: 20px;
  border-top: 2px solid #ac3ce9;
}

.comment .comment-record .item-all {
  margin-top: 15px;
}

.comment .comment-record .item-all .item {
  margin-bottom: 40px;
}

.comment .comment-record .item-all .item .user-star {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comment .comment-record .item-all .item .user-star .user-message {
  color: #D7D1F4;
  font-size: 14px;
}

.comment .comment-record .item-all .item .user-star .user-message span {
  color: #F8D746;
  font-size: 24px;
}

.comment .comment-record .item-all .item .user-comment {
  color: #cdcdcd;
  font-size: 14px;
  margin-top: 4px;
  width: 70%;
  line-height: 26px;
}


@media screen and (max-width:767px) {
  .comment {
    padding: 10px 0 0 0;
  }

  .comment .comment-content .star img {
    width: 20px;
    height: 20px;
  }

  .comment .comment-record .item-all .item .user-star .user-message {
    font-size: 12px;
  }

  .comment .comment-record .item-all .item .user-star .user-message span {
    font-size: 20px;
  }

  .comment .comment-record .item-all .item .user-comment {
    font-size: 13px;
    width: 70%;
    line-height: 22px;
  }
}

@media screen and (max-width:500px) {
  .comment .comment-record .item-all .item .user-comment {
    font-size: 13px;
    width: 90%;
    line-height: 22px;
    margin-top: 20px;
  }

}

.bounce-enter-active {
  animation: bounce-in .5s;
}

.bounce-leave-active {
  animation: bounce-in .5s reverse;
}

@keyframes bounce-in {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}

.stamp {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 12px;
  background-color: #142336;
  padding: 10px 5px;
  border-radius: 10px;
}
.stamp .dislike{
  margin-left: 10px;
}