:root {
    --picture: 3; /*若修改此处的值，请将动画picture_move一并进行修改"*/
}
html, body{
  min-width: 1374px;
  background-color: #5c5c5c05;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
}

h1{
  font-size: 50px;
}

h2{
  font-size: 40px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 20px;
}
.h4 {
  font-size: 20px;
}
h5 {
  font-size: 10px;
}

a {
  color: black;
  text-decoration: none;

}

a:hover {
  color: inherit;
}

span {
  font-size: 20px;
}

span:hover {
  color: rgb(96, 177, 253);
}

button {
  background-color: white;
  cursor: pointer;
}

ol, ul {
  list-style: none;
}

/*-----------------------------------分界线-----------------------------------------------*/
#list, .footer, .selected > h2{
  color: white;
}
#main {
  margin: 0 auto;
  
}

.notice {
  width: 100%;
  height: 10px;
}

#img_wrap {
  width: 96% ;
  height: auto;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 20px;
  background-image: url("../photo/背景图.png");
  user-select: none;
  -webkit-user-select: none;
}
/*--------主要内容------------------*/
.more_all {
  margin-top: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  
}
.more_all > :first-child {
  margin-right: 13px;
}
.more {
  width: 46%!important;
  background-color: white;
  font-size: 20px;
  display: flex;
  justify-content: center;
}
.more >a {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.content {
    width: 1053px;
}
.selected {
  width: 100%;
}

.reload_content {
  border-radius: 20px;
  background-color: rgb(0 137 255 / 65%);
  width: 80px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.out_search {
  position: absolute;
  width: 210px;
  border-radius: 4px;
  top: 35px;
  background-color: white;
  border: 0.5px solid rgb(5, 85, 84);
  translate: 11px 19px;
  cursor: pointer;
}

.out {
  position: relative;
  z-index: 999;
  width: 100%;
  text-align: center;
  font-size: 15px;
  padding: 10px 0;
}

.cont {
  width: 250px;
  height: 237px;
  margin: 4px;
  border-radius: 3px;
  margin: 3px;
}
.introduce {
    height: 68px;
}
.cont-button {
  display: block;
  background-color: white;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.cont-img-box {
  overflow: hidden;
}

.cont-img {
  border-radius: 4px;
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.notice_ {
  padding: 10px;
  border-radius: 10px;
  background-color: #2f2727;
  font-size: 20px;
  color: white;
  position: fixed;
  z-index: 9999999999999999;
  top: calc(10% - 10px);
  left: calc(50% - 50px);
  text-align: center;
  animation: notice_display;
  animation-duration: 4s;
}
@keyframes notice_display {
    60% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
/*补充中部图片*/
.in_picture {
    min-width: calc(100% / var(--picture));
    height: 388.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: picture_move;
    animation-duration: 18s;
    animation-iteration-count: infinite;
}
@keyframes picture_move {
    32.3% {
        translate: 0%;
    }
    33.3% {
        translate: -100%;
    }
    65.6% {
        translate: -100%;
    } 
    66.6% {
        translate: -200%;
    } 
    98.5% {
        translate: -200%;
    } 
    100% {
        translate: 0;
    } 
}
.images {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 3000px;
    width: calc(100%* var(--picture));
}
/*你好，赵董旭*/
.Image {
    width: 700px;
}
/*聊天功能*/
.chat_main {
    position: fixed;
    right: 10px;
    bottom: 70px;
    z-index: 2;
}
.chat_button {
  display: inline-block;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #090909;
  width: 60.8px;
  height: 40px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 0.5em;
  background: #e8e8e8;
  border: 1px solid #e8e8e8;
  box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
}

.chat_button:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
}

.chat_button:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.chat_button:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #009087;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.chat_button:hover {
  color: #ffffff;
  border: 1px solid #009087;
}
.chat_button:hover:before {
  top: -35%;
  background-color: #009087;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.chat_button:hover:after {
  top: -45%;
  background-color: #009087;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.chat_box-inner {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: var(--contrast);
  /* Content style */
  font-size: 30px;
  font-weight: 900;
  color: #c7c4c4;
  text-align: center;
  font-family: monospace;
  z-index: 999;
}
.chat {
    height: 280px;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.information {
    width: 90%;
    float: left;
    
}
.infor_box {
    background-color: white;
    width: 90%;
    min-height: 20px;
    border-radius: 15px;
    margin: -6px 0 0 21px;
}
.infor_text {
    font-size: 15px;
    display: flex;
    padding: 5px;
    color: black;
    font-family: monospace;
    width: 97%;
    white-space: normal; 
    word-break: break-all; /* 允许在任意字符间断开 */
}
.chat_user_head {
    width: 30px;
    height: 30px;
}
.infor_user {
    display: flex;
}
.chat_user_name {
    font-size: 15px;
    color: #FB7299;
}
.chat_input {
    width: 98%;
    margin: 0 auto;
    margin-top: 10px;
    display: flex;
}
#chat_input_area {
    background-color: white;
    outline: none;
    width: 60%;
    height: 100%;
    font-size: 14px;
    resize: vertical;
    border: 0.1px solid #0000005c;
}
/*发送按钮*/
.send {
    font-family: inherit;
    font-size: 10px;
    background: royalblue;
    color: white;
    padding: 0.2em 0.7em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 0 16px 16px 0;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
    width: 100px;
}

.send .send_text {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

.send .send_svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.send:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

.send:hover .send_svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

.send:hover .send_text {
  transform: translateX(5em);
}

.send:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}
.sele-content {
    display: flex;
    flex-wrap: wrap;
    justify-items: center;
    align-items: center;
    justify-content: center;
}
.charts {
    width: calc(100% - 1111px);
    
    margin-right: 20px;
    
}
.box {
    box-shadow: 3px 3px 5px 0 #00000026;
    border-radius: 7px;
    width: calc(100%-40px);
    padding: 20px;
    margin-bottom: 13px;
}
.recommend {
    height: 300px;
    background-color: white;
}
.JustUpload {
    margin-top: 30px;
    width: 100%;
    height: 94px;
    border-radius: 10px;
    background-color: blue;
    display: flex;
    align-items: center;
    color: white;
    cursor: pointer;
}
.JustUploadPNG {
    width: 90px;
    
}
.recommendOne {
    display: flex;
    align-items: center;
    font-size: 15px;
}
.shang {
    width: 40%;
    height: 100px;
    border-radius: 20px;
}
.re_intro {
    width: 60%;
}
.bang {
    width: 40px;
    height: 100%;
    align-content: center;
}
.pai {
    width: 20px;
    height: 20px;
}

#user_all_box:hover .user-info {
    display: block;
    animation: slideDown 0.3s ease-in-out;
}
#user_all_box:not(:hover) .user-info {
    display: none;
    animation: slideDown_rec 0.3s ease-in-out;
}
.content_more {
    background-color: white;
    border: 0.1px solid #002bff;
}
#out_ul > li {
    border-bottom: 0.2px solid black;
}
#out_ul > li:last-child {
    border-bottom: unset!important;
}
.other {
    background-color: white;
}
.other > :last-child {
    border-bottom: unset!important;
    margin-bottom: 0;
}
.other_one {
    padding: 5px;
    border-bottom: 0.1px solid black;
    margin-bottom: 10px;
}
.other_title {
    font-size: 25px;
}
.chat_box {
    background-color: #9c9c9c12;
}
#main::after {
    content: "";
    display: block;
}
.footer {
  font-family: lianbi;
  font-size: 40px;  
  margin-top: 20px;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
}
.main_all {
    display: flex;
    justify-content: space-around;
    max-width: 1520px;
    margin: 0 auto;
}

@keyframes move_page {
    0% {
        translate: 0%;
    }
    100% {
        translate: -100%;
    }
}
#list {
  display: none;
}
.comment {
  margin: 13px;
  background-color: orange;
  margin-top: 10px;
  border-radius: 5px;
  max-width: 337px;
  height: 194px;
}
.comment_img {
    width: 40%;
}
.comment_img > img {
    width: 100%;
}
.comment_box {
    display: flex;
    justify-content: space-around;
}
.comment_num {
    color: gold;
    font-size: 30px;
}
.comment_author {
    background-color: #cacabd;
    border-radius: 5px;
    color: #ffea02;
}
.comment_author::before {
    content: "“";
    color: #ff8b00;
    font-size: 21px;
}
.comment_num::before {
    content: "评分:";
    font-size: 15px;
    color: black;
}
.upload_comment {
    background-color: #0000ff52;
    color: #1d1d83;
    width: 92px;
    height: 29px;
}
.comment_button {
    border-radius: 3px;
}
.comment_time {
    font-size: 10px;
    color: #676767;
}
.comment_details {
    padding: 5px;
    border: 0.2px solid green;
}
#upload_comment_page {
    display: none;
    position: fixed;
    z-index: 99999999;
    width: 100vw;
    height: 100%;
    inset: 0;
    background-color: #00000057;
}
.upload_comment_box {
    background-color: white;
    animation: backIn;
    animation-duration: 0.8s;
    margin: 18vh auto;
    width: calc(100vw - 80px);
    height: 400px;
    max-width: 300px;
}
.upload_comment_box_title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
@keyframes backIn {
    0% {
        opacity: .7;
        -webkit-transform: translateY(-1200px) scale(.7);
        transform: translateY(-1200px) scale(.7)
    }

    80% {
        opacity: .7;
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}
.comment_input {
    width: 100%;
    padding: 5px;
    border-radius: 2px;
    outline: none;
    border: 0.2px solid black;
}
.comment_input_text {
    margin-top: 10px;
    resize: block;
    min-height: 100px;
}
/* From Uiverse.io by alexmaracinaru */ 
.upload_comment_sure {
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s;
  padding: 10px 20px;
  border-radius: 100px;
  background: #cfef00;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  font-size: 15px;
}

.upload_comment_sure:hover {
  background: #c4e201;
}

.upload_comment_sure > svg {
  width: 34px;
  margin-left: 10px;
  transition: transform 0.3s ease-in-out;
}

.upload_comment_sure:hover svg {
  transform: translateX(5px);
}

.upload_comment_sure:active {
  transform: scale(0.95);
}