.page_top_image {
  font-size: 0;
}
header .top_header ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-size: 14px;
  padding: 7px 50px 7px 0;
  border-radius: 0 0 8px 8px;
  background-color: #fff;
}
header .top_header ul .bold {
  font-weight: bold;
}
header .black_box {
  margin: 0 30px;
  height: 30px;
  background-color: #524E4E;
  border-radius: 0 0 10px 10px;
}
header .white_box {
  height: 15px;
  background-color: #fff;
}
header .nav {
  background-color: #00A2D2;
  margin-top: 5px;
}
header .nav .login {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 7px 20px 7px 0;
  font-size: 14px;
  color: #97f2ff;
}
header .nav .login img {
  margin-right: 10px;
  cursor: pointer;
}
header .nav .login span {
  cursor: pointer;
}
header .nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding-right: 20px;
}
header .nav ul li {
  background-color: #ebf4fd;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 2px 2px 0 0;
  box-shadow: 0 -10px 10px 5px rgba(0, 0, 0, 0.1);
  color: #666;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s linear;
}
header .nav ul li:hover {
  transform: scale(1.1);
}
header .nav ul li:nth-of-type(1),
header .nav ul li:nth-of-type(2) {
  color: red;
}
header .nav ul li:nth-of-type(3) {
  color: purple;
}
header .nav ul li:nth-of-type(4) {
  color: blue;
}
nav {
  padding: 10px 30px;
  background-color: #fff;
}
nav .nav_top {
  display: flex;
  align-items: center;
}
nav .nav_top svg {
  vertical-align: middle;
}
nav .nav_top svg.home {
  width: 16px;
  height: 16px;
}
nav .nav_top span {
  vertical-align: middle;
  font-size: 12px;
}
nav .nav_top .icon {
  fill: #444;
  padding: 0 5px;
  line-height: 30px;
  vertical-align: middle;
}
nav .nav_top .item {
  cursor: pointer;
}
nav .nav_top .item:hover {
  text-decoration: underline;
}
nav .nav_bottom {
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
nav .nav_bottom .left {
  width: 80px;
  height: 33px;
}
nav .nav_bottom .left img {
  width: 100%;
}
nav .nav_bottom .right,
nav .nav_bottom .pagenation {
  display: flex;
  align-items: center;
  gap: 10px;
}
nav .nav_bottom .right > div,
nav .nav_bottom .pagenation > div,
nav .nav_bottom .right li,
nav .nav_bottom .pagenation li {
  cursor: pointer;
  display: flex;
  align-items: center;
  border: 1px solid #C2D5E3;
  padding: 0 8px;
  height: 26px;
}
nav .nav_bottom .right > div.active,
nav .nav_bottom .pagenation > div.active,
nav .nav_bottom .right li.active,
nav .nav_bottom .pagenation li.active {
  background-color: var(--color-one);
  font-weight: bold;
}
nav .nav_bottom .right > div svg,
nav .nav_bottom .pagenation > div svg,
nav .nav_bottom .right li svg,
nav .nav_bottom .pagenation li svg {
  width: 12px;
  fill: #666;
  height: 12px;
}
nav .nav_bottom .right > div span,
nav .nav_bottom .pagenation > div span,
nav .nav_bottom .right li span,
nav .nav_bottom .pagenation li span {
  vertical-align: middle;
}
main {
  padding: 0 30px 10px;
  background-color: #fff;
}
.main_content {
  display: flex;
  border: 1px solid var(--color-one);
  font-size: 12px;
  border-bottom: none;
}
.main_content .left_info {
  width: 160px;
  background-color: var(--color-two);
  border-bottom: 4px solid var(--color-one);
  flex: 0 0 auto;
}
.main_content .left_info .top {
  padding: 0 15px;
  height: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  color: #F26C4F;
  border-bottom: 4px solid var(--color-one);
}
.main_content .left_info .top span {
  color: #999;
}
.main_content .left_info .bottom .name {
  height: 40px;
  padding: 0 15px;
  line-height: 40px;
  border-bottom: 1px dashed #CDCDCD;
}
.main_content .left_info .bottom .avatar_box {
  position: relative;
  padding: 10px 0;
  cursor: pointer;
}
.main_content .left_info .bottom .avatar_box:hover .img_box {
  z-index: 11;
  border-color: transparent;
}
.main_content .left_info .bottom .avatar_box:hover .hover_box {
  z-index: 10;
}
.main_content .left_info .bottom .avatar_box .img_box {
  margin: 0 15px;
  border: 4px solid #FFF;
  font-size: 0;
  position: relative;
}
.main_content .left_info .bottom .avatar_box .img_box img {
  width: 100%;
}
.main_content .left_info .bottom .avatar_box .hover_box {
  position: absolute;
  top: 0;
  left: 0;
  background: #efefef url(https://datasource.yiqiuxing.cn/dll/dllnewluntan/images/nosexbg.png) no-repeat bottom right;
  display: flex;
  width: 430px;
  box-shadow: 2px 2px 3px #CCC;
  z-index: -1;
  height: 100%;
}
.main_content .left_info .bottom .avatar_box .hover_box .hover_img_box {
  width: 160px;
}
.main_content .left_info .bottom .avatar_box .hover_box .user_info {
  padding: 10px 0;
  box-sizing: border-box;
}
.main_content .left_info .bottom .avatar_box .hover_box .user_info .item {
  display: flex;
  margin-bottom: 7px;
}
.main_content .left_info .bottom .avatar_box .hover_box .user_info .item .label {
  width: 60px;
}
.main_content .left_info .bottom .content_info {
  padding: 10px 15px;
  display: flex;
}
.main_content .left_info .bottom .content_info li {
  width: 33%;
  text-align: center;
  border-right: 1px solid #ccc;
}
.main_content .left_info .bottom .content_info li:last-child {
  border: none;
}
.main_content .left_info .bottom .username,
.main_content .left_info .bottom .enusername,
.main_content .left_info .bottom .face,
.main_content .left_info .bottom .info_2,
.main_content .left_info .bottom .send_message {
  padding: 3px 15px;
}
.main_content .left_info .bottom .enusername {
  color: #999;
}
.main_content .left_info .bottom .info_2 {
  display: flex;
  gap: 5px;
}
.main_content .left_info .bottom .info_2 p {
  margin-bottom: 2px;
}
.main_content .left_info .bottom .send_message {
  display: flex;
  align-items: center;
  gap: 5px;
}
.main_content .right_info {
  flex: 1;
  background-color: #fff;
  border-bottom: 4px solid var(--color-two);
}
.main_content .right_info:hover .right_bottom {
  opacity: 1;
}
.main_content .right_info .right_top {
  height: 46px;
  border-bottom: 4px solid var(--color-two);
  box-sizing: border-box;
  font-size: 16px;
  font-weight: bold;
  color: #444;
  padding: 5px 15px;
  display: flex;
}
.main_content .right_info .right_top span {
  font-size: 12px;
  padding-left: 10px;
  color: #999;
}
.main_content .right_info .right_top .dayin {
  margin-left: auto;
}
.main_content .right_info .content .top {
  height: 41px;
  border-bottom: 1px dashed #CDCDCD;
  display: flex;
  align-items: center;
  margin: 0 15px;
  gap: 10px;
}
.main_content .right_info .content .top li img {
  vertical-align: middle;
}
.main_content .right_info .content .top li svg {
  width: 12px;
  height: 12px;
  vertical-align: middle;
}
.main_content .right_info .content .content_text {
  padding: 10px 15px;
  font-size: 16px;
  box-sizing: border-box;
}
.main_content .right_info .content .content_text a {
  color: #333;
}
.main_content .right_info .content .content_text .downloadEle {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
}
.main_content .right_info .content .content_text .des {
  margin: 10px 0;
  width: 1000px;
}
.main_content .right_info .content .content_text ul.function {
  display: flex;
  gap: 50px;
}
.main_content .right_info .content .content_text ul.function li {
  font-weight: bold;
  margin-bottom: 10px;
}
.main_content .right_info .content .content_text ul.function li .item {
  width: fit-content;
}
.main_content .right_info .content .content_text ul.image_box {
  margin-top: 10px;
}
.main_content .right_info .content .content_text ul.image_box li {
  display: flex;
  flex-direction: column;
}
.main_content .right_info .content .content_text .bottom_text {
  margin-top: 20px;
}
.main_content .right_info .comments {
  border-top: 1px dashed #ccc;
  background-color: #f9f9f9;
  padding: 20px;
  box-sizing: border-box;
}
.main_content .right_info .comments li {
  margin-bottom: 10px;
}
.main_content .right_info .comments li .top {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main_content .right_info .comments li .top .avatar {
  width: 50px;
  height: 50px;
  border: 4px solid #fff;
}
.main_content .right_info .comments li .top .avatar img {
  width: 100%;
}
.main_content .right_info .comments li .top .comment_text {
  font-size: 16px;
}
.main_content .right_info .comments li .top .comment_text b {
  color: #008ded;
  font-weight: normal;
}
.main_content .right_info .comments li .top .comment_text span {
  color: #008ded;
  font-weight: normal;
  text-decoration: underline;
  cursor: pointer;
}
.main_content .right_info .comments li .bottom {
  text-align: right;
  font-size: 14px;
}
.main_content .right_info .comments li:last-child {
  margin-bottom: 0;
}
.main_content .right_info .right_bottom {
  margin: 0 15px;
  border-top: 1px dashed #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  opacity: 0.4;
}
.main_content .right_info .right_bottom .repeat img {
  vertical-align: middle;
}
.main_content .right_info .right_bottom .repeat span {
  vertical-align: middle;
}
.user_content .item {
  display: flex;
  border: 1px solid var(--color-one);
  border-top: none;
  border-bottom: none;
  font-size: 12px;
}
.user_content .item:last-child {
  border-bottom: 1px solid var(--color-one);
}
.user_content .item .left_info {
  width: 160px;
  background-color: var(--color-two);
  border-bottom: 4px solid var(--color-one);
  padding-bottom: 100px;
}
.user_content .item .left_info .name {
  height: 40px;
  padding: 0 15px;
  line-height: 40px;
  border-bottom: 1px dashed #CDCDCD;
}
.user_content .item .left_info .avatar_box {
  position: relative;
  padding: 10px 0;
  cursor: pointer;
}
.user_content .item .left_info .avatar_box:hover .img_box {
  z-index: 11;
  background-color: transparent;
}
.user_content .item .left_info .avatar_box:hover .hover_box {
  z-index: 10;
}
.user_content .item .left_info .avatar_box .img_box {
  margin: 0 15px;
  padding: 4px;
  font-size: 0;
  position: relative;
  background-color: #fff;
  aspect-ratio: 1/1;
}
.user_content .item .left_info .avatar_box .img_box .avatar {
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-image: url(https://datasource.yiqiuxing.cn/AudioConversion/webPageImage/images/avatar.png);
}
.user_content .item .left_info .avatar_box .hover_box {
  position: absolute;
  top: 0;
  left: 0;
  background: #efefef url(https://datasource.yiqiuxing.cn/dll/dllnewluntan/images/nosexbg.png) no-repeat bottom right;
  display: flex;
  width: 430px;
  box-shadow: 2px 2px 3px #CCC;
  z-index: -1;
  height: 100%;
}
.user_content .item .left_info .avatar_box .hover_box .hover_img_box {
  width: 160px;
}
.user_content .item .left_info .avatar_box .hover_box .user_info {
  padding: 10px 0;
  box-sizing: border-box;
}
.user_content .item .left_info .avatar_box .hover_box .user_info .item {
  display: flex;
  margin-bottom: 7px;
}
.user_content .item .left_info .avatar_box .hover_box .user_info .item .label {
  width: 60px;
}
.user_content .item .left_info .content_info {
  padding: 10px 15px;
  display: flex;
}
.user_content .item .left_info .content_info li {
  width: 33%;
  text-align: center;
  border-right: 1px solid #ccc;
}
.user_content .item .left_info .content_info li:last-child {
  border: none;
}
.user_content .item .left_info .username,
.user_content .item .left_info .enusername,
.user_content .item .left_info .face,
.user_content .item .left_info .info_2,
.user_content .item .left_info .send_message {
  padding: 3px 15px;
}
.user_content .item .left_info .enusername {
  color: #999;
}
.user_content .item .left_info .progress {
  height: 10px;
  margin: 10px 15px;
  box-sizing: border-box;
  box-shadow: inset 0 0 5px 2px rgba(0, 0, 0, 0.1);
  border-radius: 100px;
}
.user_content .item .left_info .progress .progress_box {
  overflow: hidden;
  height: 10px;
  border-radius: 100px;
}
.user_content .item .left_info .progress .progress_box .progress_bgc {
  height: 10px;
  width: 130px;
  background-image: linear-gradient(to right, #F257CD, #EB7D75);
}
.user_content .item .left_info .info_2 {
  display: flex;
  gap: 5px;
}
.user_content .item .left_info .info_2 p {
  margin-bottom: 2px;
}
.user_content .item .left_info .send_message {
  display: flex;
  align-items: center;
  gap: 5px;
}
.user_content .item .right_info {
  flex: 1;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  border-bottom: 4px solid var(--color-two);
}
.user_content .item .right_info:hover .right_bottom {
  opacity: 1;
}
.user_content .item .right_info .content {
  flex: 1;
}
.user_content .item .right_info .content .top {
  height: 41px;
  border-bottom: 1px dashed #CDCDCD;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px 0 0;
  box-sizing: border-box;
}
.user_content .item .right_info .content .top .time {
  display: flex;
  align-items: center;
  margin: 0 15px;
  gap: 10px;
}
.user_content .item .right_info .content .top .time li img {
  vertical-align: middle;
}
.user_content .item .right_info .content .top .time li svg {
  width: 12px;
  height: 12px;
  vertical-align: middle;
}
.user_content .item .right_info .content .content_text {
  padding: 10px 15px;
  font-size: 16px;
  box-sizing: border-box;
}
.user_content .item .right_info .content .content_text img {
  width: 500px;
}
.user_content .item .right_info .comments {
  border-top: 1px dashed #ccc;
  background-color: #f9f9f9;
  padding: 20px;
  box-sizing: border-box;
}
.user_content .item .right_info .comments li {
  margin-bottom: 10px;
}
.user_content .item .right_info .comments li .top {
  display: flex;
  align-items: center;
  gap: 20px;
}
.user_content .item .right_info .comments li .top .avatar {
  width: 50px;
  height: 50px;
  border: 4px solid #fff;
  flex: 0 0 auto;
}
.user_content .item .right_info .comments li .top .avatar img {
  width: 100%;
}
.user_content .item .right_info .comments li .top .comment_text {
  font-size: 16px;
}
.user_content .item .right_info .comments li .top .comment_text b {
  color: #008ded;
  font-weight: normal;
}
.user_content .item .right_info .comments li .top .comment_text span {
  color: #008ded;
  font-weight: normal;
  text-decoration: underline;
  cursor: pointer;
}
.user_content .item .right_info .comments li .bottom {
  text-align: right;
  font-size: 14px;
}
.user_content .item .right_info .comments li:last-child {
  margin-bottom: 0;
}
.user_content .item .right_info .right_bottom {
  margin: 0 15px;
  border-top: 1px dashed #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  opacity: 0.4;
}
.user_content .item .right_info .right_bottom .repeat img {
  vertical-align: middle;
  margin-left: 10px;
}
.user_content .item .right_info .right_bottom .repeat img:first-child {
  margin-left: 0;
}
.user_content .item .right_info .right_bottom .repeat span {
  vertical-align: middle;
}
.next_page {
  height: 42px;
  border: 1px solid #c2d5e3;
  border-radius: 3px;
  background-color: #F2F2F2;
  margin: 5px 0;
  text-align: center;
  line-height: 42px;
  color: #666;
  cursor: pointer;
}
.bottom_options {
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.bottom_options .left {
  width: 80px;
  height: 33px;
}
.bottom_options .left img {
  width: 100%;
}
.bottom_options .right,
.bottom_options .pagenation {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bottom_options .right > div,
.bottom_options .pagenation > div,
.bottom_options .right li,
.bottom_options .pagenation li {
  cursor: pointer;
  display: flex;
  align-items: center;
  border: 1px solid #C2D5E3;
  padding: 0 8px;
  height: 26px;
}
.bottom_options .right > div.active,
.bottom_options .pagenation > div.active,
.bottom_options .right li.active,
.bottom_options .pagenation li.active {
  background-color: var(--color-one);
  font-weight: bold;
}
.bottom_options .right > div svg,
.bottom_options .pagenation > div svg,
.bottom_options .right li svg,
.bottom_options .pagenation li svg {
  width: 12px;
  fill: #666;
  height: 12px;
}
.bottom_options .right > div span,
.bottom_options .pagenation > div span,
.bottom_options .right li span,
.bottom_options .pagenation li span {
  vertical-align: middle;
}
.bottom_login_info {
  display: flex;
  border: 1px solid var(--color-one);
  margin-top: 10px;
}
.bottom_login_info .left {
  width: 160px;
  background-color: var(--color-two);
  border-right: 1px solid var(--color-one);
}
.bottom_login_info .right {
  flex: 1;
  padding: 20px 15px;
}
.bottom_login_info .right .rich_text {
  border: 1px solid #ccc;
}
.bottom_login_info .right .rich_text .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background-color: #F2F2F2;
  font-size: 14px;
  border-bottom: 1px solid #ccc;
}
.bottom_login_info .right .rich_text .top img {
  height: 24px;
}
.bottom_login_info .right .rich_text .text {
  text-align: center;
  vertical-align: middle;
  height: 120px;
  line-height: 120px;
  font-size: 12px;
}
.bottom_login_info .right .rich_text .text img {
  vertical-align: middle;
  margin-left: 10px;
}
.bottom_login_info .right .repeat_text {
  display: flex;
  align-items: center;
  font-size: 12px;
  padding: 10px 0;
}
.bottom_login_info .right .repeat_text button {
  background-color: #06C;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-weight: bold;
}
.bottom_login_info .right .repeat_text p {
  margin-left: auto;
}
