@charset "UTF-8";
* {margin: 0;padding: 0; -webkit-tap-highlight-color: rgba(0,0,0,0); }

.wrapper{
	padding:1em;
}

:root {
    --sat: env(safe-area-inset-top);
    --sar: env(safe-area-inset-right);
    --sab: env(safe-area-inset-bottom);
    --sal: env(safe-area-inset-left);
}

html {
	height: 100%;
	max-width:480px;
	margin:auto
}

body {
	background-color:#F8F8F8;
	transition: all .2s ease-in-out;
}

header {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width:480px;
	line-height: 44px;
	background-color: #0e90d2;	
	text-align: center;
	color: #FFF;
}

section {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	-webkit-box-shadow: 0 0 1px #ccc2c2;
    -moz-box-shadow: 0 0 1px #ccc2c2;
    box-shadow: 0 0 1px #ccc2c2;
}

footer {
	position: fixed;
	z-index: 3;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50px;
	line-height: 50px;
	background-color: rgba(0,0,0,.6);	
	text-align: center;
	color: #FFF;
}

input[type=button]{
	width:50%;
	margin-right:-5px;
}

input[type=text],input[type=password]{
	width:100%;
	vertical-align: middle;
	height: 38px;
	display: table-cell;
	padding: .5em;
	border-radius: 0;
}

table{
	width:100%
}

time{
	margin-left:10px;
	font-weight: 400;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

#drag-container, #spin-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: rotateX(-10deg);
          transform: rotateX(-10deg);
  margin-top: 30px;
}

#drag-container img, #drag-container video {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 200px;
  font-size: 50px;
  text-align: center;
  border: 1px solid;
  -webkit-box-shadow: 0 0 8px #fff;
          box-shadow: 0 0 8px #fff;
  -webkit-box-reflect: below 10px linear-gradient(transparent, transparent, #0005);
}

#drag-container img:hover, #drag-container video:hover {
  -webkit-box-shadow: 0 0 15px #fffd;
          box-shadow: 0 0 15px #fffd;
  -webkit-box-reflect: below 10px linear-gradient(transparent, transparent, #0007);
}

#drag-container p {
  font-family: Serif;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%) rotateX(90deg);
          transform: translate(-50%,-50%) rotateX(90deg);
  color: #fff;
}

#ground {
  width: 900px;
  height: 900px;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%) rotateX(90deg);
          transform: translate(-50%,-50%) rotateX(90deg);
  background: -webkit-radial-gradient(center center, farthest-side , #9993, transparent);
}

@-webkit-keyframes spin {
  from{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  } to{
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@keyframes spin {
  from{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  } to{
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}
@-webkit-keyframes spinRevert {
  from{
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  } to{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
@keyframes spinRevert {
  from{
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  } to{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

.relative {
	position: relative;
}

.view-container {
	position: relative;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	-webkit-transform: translate3d(0,0,0);
	-webkit-backface-visibility: hidden;
}

.page-container {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: #F8F8F8;
}

.page-num {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	margin-left: -25px;
	font-size: 72px; 
}

.default {
	margin-top:calc(49px + constant(safe-area-inset-top));
	margin-top:calc(49px + env(safe-area-inset-top));
	overflow:hidden;
	position:relative;
}

.pc-background {
	position: fixed;
    left: 0px;
    background: url(../img/body-background.jpg);
    background-size: cover;
}

.card {
    margin: .625rem .9375rem;
    border-radius: 1px;
    box-shadow: 0 1px 2px rgba(0,0,0,.3);
    background: #fff;
    color: #333;
    position: relative!important;
    z-index:20;
}

.card-body {
    padding: 1.25rem .9375rem;
    line-height: 1.6;
    overflow:hidden;
}

.card-header {
    border-bottom: 1px solid #eee;
    display: -webkit-box;
	display: flex;
}

.card-footer{
	text-align:right;
}

.card-footer span{
	color: #aaa
}

.card-footer span:first-child {
	margin-right:5px;
}

.card-footer, .card-header {
	position:relative;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: baseline;
    min-height: 2.75rem;
    padding: .625rem .9375rem;
}

.am-input-group{
	margin-bottom:10px;
}

.group-body {
    display: block;
    padding: .9375rem;
    position: relative;
}

.group-body .am-btn{

	height:60px;
}

.default .sumbit-btn{
	width:100%;
}

.default textarea{
	width:100%;
    border-radius: 1px;
    border:none;
    height:300px;
    box-shadow: 0 1px 2px rgba(0,0,0,.3);
    background: #fff;
    color: #333;
    padding: 8px;
}

.mui-switch {
	width: 52px;
	height: 31px;
	margin-top:-3px;
	float:right;
	position: relative;
	border: 1px solid #dfdfdf;
	background-color: #fdfdfd;
	box-shadow: #dfdfdf 0 0 0 0 inset;
	border-radius: 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	background-clip: content-box;
	display: inline-block;
	-webkit-appearance: none;
	user-select: none;
	outline: none;
}

.mui-switch:before {
	content: '';
	width: 29px;
	height: 29px;
	position: absolute;
	top: 0px;
	left: 0;
	border-radius: 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	background-color: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.mui-switch:checked {
	border-color: #0e90d2;
	box-shadow: #0e90d2 0 0 0 16px inset;
	background-color: #0e90d2;
}

.mui-switch:checked:before {
	left: 21px;
}

.mui-switch.mui-switch-animbg {
	transition: background-color ease 0.4s;
}

.mui-switch.mui-switch-animbg:before {
	transition: left 0.3s;
}

.mui-switch.mui-switch-animbg:checked {
	box-shadow: #dfdfdf 0 0 0 0 inset;
	background-color: #0e90d2;
	transition: border-color 0.4s, background-color ease 0.4s;
}

.mui-switch.mui-switch-animbg:checked:before {
	transition: left 0.3s;
}

.mui-switch.mui-switch-anim {
	transition: border cubic-bezier(0, 0, 0, 1) 0.4s, box-shadow
		cubic-bezier(0, 0, 0, 1) 0.4s;
}

.mui-switch.mui-switch-anim:before {
	transition: left 0.3s;
}

.mui-switch.mui-switch-anim:checked {
	box-shadow: #0e90d2 0 0 0 16px inset;
	background-color: #0e90d2;
	transition: border ease 0.4s, box-shadow ease 0.4s, background-color
		ease 1.2s;
}

.mui-switch.mui-switch-anim:checked:before {
	transition: left 0.3s;
}

.chosen{
	position:absolute;
	right:0;
	top:15px;
	background: url("../img/character-chosen.png") 0px 0px no-repeat;
	background-size:100%;
	width:70px;
	height:30px;
}

.float-right{
	float:right;
}

.rule-panel{
	padding:0px 10px 0px 10px;
}

.rule-panel img{
	width:30%
}

#rule-avatar img {
	border: 1px solid #ccc;
	max-height: 136px;
}

.chat-content{
	max-width:70%;
	float:left;
	margin-left:10px;
} 

.chat-content h3{
	margin-left:5px;
}

.chat-content span{
	margin-top:0px;
	color:#aaaaaa;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-left:5px;
    line-height:28px;
    max-height:28px;
}

.am-line-height {
	line-height:48px;
	float:right;
}

.am-line-height:before {
	margin-right: 5px;
}

.badge {
    position: relative;
    left:12px;
    top:-30px;
    margin-left: -10px;
    padding: 3px 6px;
    font-size: 1.25rem;
    min-width: 0;
    line-height: 1;
    white-space: nowrap;
    display: inline-block;
    cursor: default;
    z-index: 10000;
}

.badge-rounded {
    border-radius: 1000px;
}

.badge-alert {
    background: #dd514c;
}

.badge-card{
	top: 15px;
    left: calc(100% - 30px);
    color: white;
    position: absolute;
}

.invisible{
	display:none!important;
}

.gesture-style{
	color:red;
}

#my-actions li{
	padding:12px;
}

.nv-guide{
	margin:0 auto;
	margin-top:calc(50% - 50px);
	overflow:hidden;
	text-align:center;
	margin-bottom: calc(100% - 60px);
}

.policy{
	margin:0 auto;
	overflow:hidden;
	padding:10px;
	text-align:left;
}

.policy span {
	display:inline-block
}


.nv-link{
	color:#0e90d2;
	cursor:pointer;
}

.am-icon-chevron-right {
	color: hsla(0,0%,53%,.45);
}

#seat-table p{
	margin:0;
}

.essay-box{
	background-color:white;
	padding:0.5em;
	position: relative;
	border-bottom:1px solid #cccccc;
}

.essay-box time,
#comment-list time{
	margin-top:0px;
	color:#aaaaaa;
	overflow: hidden;
	-webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: clip;
    display: -webkit-box;
}

.essay-box .essay-content{
	margin-top:20px;
}

.essay-box .operation-box{	
	overflow:hidden;
}

.essay-box .operation-box span{
	float:right;
	margin-right:10px;
	color:#aaa;
	cursor:pointer;
}

.essay-box p{
	margin-top:0;	
}

.essay-box h2{
	margin-bottom:20px;
}

.essay-box .am-comment-avatar,
#comment-list .am-comment-avatar{
	width: 15%;
    height: 15%;
    margin-right: 5%;
}

#comment-list li{
	list-style-type:none;
	padding:0.5em;
}

#comment-list .comment-reply{
	color:steelblue;
	cursor:pointer;
	margin-left:10px;
}

#comment-list .commnet-content{
	padding-top:10px;
	padding-left:20%;
	padding-bottom:10px;
	border-bottom:1px solid #cccccc;
}

#badge-list {
	display: inline-block;
}

.essay-style{
	overflow: hidden;
	-webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: clip;
    display: -webkit-box;
    padding-bottom:0;
    margin-bottom:15px;
}

.essay-style p{
	margin:0;
}

.essay-edit hr{
	margin:0
}

#edui1_toolbarbox, #edui1_bottombar {
	display: none!important;
}

#edui1 {
	border-left:none;
	border-right:none;
}

#picUpload {
	height: 500px;
	padding: .5em;
}

.flex-container {
	display: grid!important;
    aspect-ratio: 1; /* 设置宽高比为1:1 */
   	position: relative;
   	float: left;
}

.flex-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    grid-area: 1 / 1 / 2 / 2;
    aspect-ratio: 1 / 1; /* 只在支持的浏览器中有效 */
}

.flex-container span {
    position:absolute;
    right:0;
    text-shadow:4px 2px 4px rgba(255, 255, 255, 1);
    top:-5px;
}


.play-together {
  margin-bottom: 20px;
  padding: 10px;
  position: fixed;
  top: -1px;
  z-index: 1010;
  display: none;
  background: url(../img/nv.png);
  background-size: 100%;
  background-repeat: no-repeat;
  max-width: 480px;
  width: 100%;
}

.play-together h2 {
  margin-bottom: 10px;
  color: white;
}

.play-options {
  display: flex;
  overflow: hidden;
}

.play-options .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 10px 20px;
  position: relative;
  float: left;
  margin-right: 10px;
}

.play-options .swiper-slide span {
  z-index: 1;
  text-align: center;
  color: black; /* Change font color to black */
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  z-index: 0;
}

.menu-item.clicked::before {
  background: rgba(0, 191, 255, 0.8);
}

.fullscreen-modal {
  position: fixed;
  z-index: 1020;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
    
}
 
.fullscreen-modal img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    max-width:480px;
    
}

.visiting {
	background-color:deepskyblue;
}

.am-navbar{
	max-width:480px;
	left:auto;
	box-sizing: content-box;
}

.loading-box{
	text-align: center;
	height:0px;
	overflow:hidden;
}

.loading-pic {
	opacity: 0;
}

.loadmore,.nomore{
	text-align:center;
	margin:10px auto;
}

.spoiler-header{
	margin:20px 10px; 
	margin-top:5px
}

.spoiler-title{
	margin-bottom:2px
}

.spoiler-button{
	display:inline-block;
	width:60px;
	font-size:13px;
	margin-left:5px;
	padding:0px;
}

.spoiler-body{
	margin: 0px; 
	padding: 6px; 
	border: 1px inset;
}

.character-box{
	text-align:center;
	margin-top:20px;
	vertical-align: top;
}

.character-box .radio-box{
	margin-top:10px;
	clear:both;
}

.character-box img{
	border-radius:50%;
	width:50%;
}

.character-avatar{
	float:right;
	width:50px;
	height:50px;
	margin-right:60px;
}

.sign-avatar{
	clear:both;
	float:right;
	width:50px;
	height:50px;
	margin-top:-50px
}

#select-character-all #target_select_dummy{
	border:1px solid #cccccc;
	width:120px;
}

.select-border input[type='text']{
	border:1px solid #cccccc;
}


#select-character-all img{
	float:right;
	height:50px;
	width:50px;
	margin-top:-54px;
}


.no-border-side{
	border-left:none;
	border-right:none;
}

.index-style{
	padding:0;
	margin:-1.25rem;
}

.scroll-nav{
	position:absolute;
	display:none;
	right:20px;
	bottom:calc(60px + constant(safe-area-inset-bottom));
	bottom:calc(60px + env(safe-area-inset-bottom));
}

.scroll-nav .scroll-button{
	display:block;
	padding:0;
    text-shadow: 2px 2px 5px #888888;
    color: #F8F8F8;
}

.scroll-nav .scroll-button:hover{
	color:steelblue;
	transition: color 0.5s; 
	-webkit-transition: color 0.5s;
}

.user-badge{
	width:30px;
}

.unavailable {
	-webkit-filter: grayscale(100%);    /* webkit内核支持程度较好 */  
    -moz-filter: grayscale(100%);    /* 其他内核现在并不支持，为了将来兼容性书写 */  
     -ms-filter: grayscale(100%);  
      -o-filter: grayscale(100%);  
         filter: grayscale(100%);    /* 标准写法 */  
}

.avatar-detail-img {
	width:80%;
}

.am-tabs-bd {
  -moz-user-select: text !important;
  -webkit-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

#operation-list {
	margin-top:10px;
	margin-bottom:10px;
}

#operation-list .am-btn{
	margin-right:5px;
	margin-bottom:5px;
}

#operation-list .badge{
	top:-15px;
	padding:3px 7px;
}

#operation-record .am-btn{
	margin-right:5px;
	margin-bottom:5px;
}

#record-histroy h3 {
	margin-top:0;
}

#record-histroy h3:first-child {
	margin-top:1.6rem;
}


#chat-detail-list .am-btn{
	margin-right:5px;
	margin-bottom:5px;
}

.operation-param {
	min-width:30px;
	text-decoration:underline;
} 

#inference-table th {
	background: white;
	border-right:1px solid #ccc;
	border-left:none;
	text-align: center;
}

#inference-table td {
	background: white;
	border-right:1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-left:none;
}

.fixed-length {
	width: 20px
}

#speech-type-list a {
	text-align:center
}

#nv-chatbar {
	padding-bottom:constant(safe-area-inset-bottom);
	padding-bottom:env(safe-area-inset-bottom);
	background:#0e90d2;
	display:table;
}

#nv-footer {
	padding-bottom:constant(safe-area-inset-bottom);
	padding-bottom:env(safe-area-inset-bottom);
	line-height:calc(49px + constant(safe-area-inset-bottom));
	line-height:calc(49px + env(safe-area-inset-bottom));
}
.am-block {
	display:block
}

.not-mentioned-class {
    height: 32px;
    margin-top: 5px;
}

.not-mentioned-class span {
	float: right;
    margin-right: 5px;
}

.beian {
	position: fixed;
    right: 50px;
    bottom: 0px;
    color: white;
    text-shadow: 2px 2px 2px black;
}

.beian a{
    color: white;
    text-shadow: 2px 2px 2px black;
    
}

.selected{
	color:#0e90d2;
}

.rule-detail blockquote {
	margin-bottom:20px;
}

.rule-detail span {
	font-weight: 700;
}

#search-detail {
	padding: 10px 10px 15px;
}

#avatar-list{
	margin-bottom: 15px;
}

#avatar-list img {
	border: 1px solid #ccc;
	margin: auto
}

.random-character {
	position:relative;
}

.random-character::before {
	content: "额外金币";
	position: absolute;
    transform: rotate(30deg);
    background: red;
    color: white;
    font-size: 12px;
    padding: 2px;
}

@property --rotate {
  syntax: "<angle>";
  initial-value: 132deg;
  inherits: false;
}

.magic {
  background: white;
  padding: 3px;
  border-radius: 6px;
}

.magic::before {
  content: "";
  width: 101%;
  height: calc(100% + 4px);
  border-radius: 8px;
  border-width:0px!important;
  background-image: linear-gradient(
  var(--rotate)
  , #5ddcff, #3c67e3 43%, #4e00c2);
  position: absolute;
  z-index: -1;
  top: -2px;
  left: -0.5%!important;
  animation: spin 3s linear infinite;
}

.magic::after {
  position: absolute;
  content: "";
  top: 5%;
  left: 0;
  right: 0!important;
  z-index: -1;
  height: 95%;
  width: 95%;
  margin: 0 auto;
  filter: blur(20px);
  background-image: linear-gradient(
    var(--rotate)
    , #5ddcff, #3c67e3 43%, #4e00c2);
    opacity: 1;
  transition: opacity .5s;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  0% {
    --rotate: -228deg;
  }
  100% {
    --rotate: 132deg;
  }
}

.xmas-avatar {
    margin-left: -48px;
    width: 59px;
    height: 56px;
    margin-top: -8px;
    margin-right: -52px;
    background: url(../img/assemble/xmax-avatar.png);
    background-size: 53px 53px;
}

@media only screen and (min-width: 641px) {
.xmas-avatar {
	width: 78px;
    height: 70px;
    margin-left: -60px;
    margin-right: -66px;
    margin-top: -13px;
    background-size: 70px 70px;
}
}
	

.xmas .am-comment-meta {
	background: url(../img/assemble/xmax-top.jpg)!important;
	background-size: 100% 100%!important;
	padding-top: 30px
}


.xmas .am-comment-bd {
	background: url(../img/assemble/xmax-bottom.jpg)!important;
    background-size: 100%!important;
    background-repeat: no-repeat!important;
    background-position: bottom center!important;
    padding-bottom: 50px!important;
}

.xmas:after {
	border-left-color: green!important;
	border-right-color: green!important
}

.anniversary .am-comment-meta{
	background: url(../img/assemble/anniversary-top.png)!important;
	background-size: 100% 100%!important;	
	padding-bottom:2px;
}

.anniversary .am-comment-hd {
	border-bottom:none;
}

.anniversary .am-comment-bd {
	background: url(../img/assemble/anniversary-bottom.png)!important;
    background-size: 100% 60px!important;
    background-repeat: no-repeat!important;
    background-position: bottom center!important;
    padding: 0 20px 20px 20px!important;
}

.anniversary .am-comment-info {
	margin-top:10px;
	margin-left:10px;
}

.anniversary {
	border:none;
	background-color:transparent;
}

.anniversary:before {
	content: "";
	background-image: url(../img/assemble/anniversary-mid.png)!important;
	background-size:100% 100%!important;
	width:100%!important;
	height:calc(100% - 60px)!important;
	border: none;
    right: 0!important;
    top: 0px!important;
    z-index:-1!important;
    left: 0px!important;
}

 .anniversary:after {
 	border-style:none!important;
 }
 
.anniversary .am-comment-actions {
	margin-top: 10px;
    background: transparent!important;
}

.water{
     /* border: 1px solid black; */
     border-radius: 61% 39% 57% 43% / 46% 67% 33% 54%;
     box-shadow: inset 10px 20px 30px rgba(0, 0, 0, 0.5),
                     10px 10px 20px rgba(0, 0, 0, 0.3),
                     15px 15px 30px rgba(0, 0, 0, 0.05),
                 inset -10px -20px 30px rgba(255, 255, 255, 0.8);
     position: relative;
     animation: water-a 4s linear alternate; 
 }
 
 .water header {
 	border:none;
 	background: transparent!important;	
 }
 
 .water time, .water a {
 	color: black;
 }
 
 .water .am-comment-meta {
 	background: transparent!important;		
 }
 
 .water:after, .water:before {
 	border-style:none!important;
 }
 
 @keyframes water-a {
     25% {
         border-radius: 58% 42% 59% 41% / 52% 56% 54% 48%;
     }
     50% {
         border-radius: 46% 54% 40% 60% / 52% 33% 67% 48%;
     }
     75% {
         border-radius: 65% 35% 71% 29% / 31% 60% 40% 69%;
     }
     100% {
         border-radius: 61% 39% 57% 43% / 46% 67% 33% 54%;
     }
 }
 @keyframes water-b {
     25% {
         top: 17%;
         left: 50%;
     }
     50% {
         top: 20%;
         left: 50%;
     }
     100% {
         top: 22%;
         left: 50%;
     }
 }
 
 
.am-comment-flip .dragon .am-comment-meta{
	background: url(../img/assemble/dragon-top.png)!important;
	background-size: 100% 100%!important;	
	padding-bottom:2px;
	height: 180px;
    padding-top: 88px;
    background-color: transparent!important;
    transform: scaleX(-1);
    padding-left: 20px;
    padding-right: 23.5%;
}

.am-comment-flip .dragon .am-comment-hd {
	border-bottom:none;
	width: 123%;
    margin-left: -23%;
    background:transparent
}

.am-comment-flip .dragon .am-comment-info {
	margin-top:10px;
    transform: scaleX(-1);
    color: gold;
    float:right;
}

.am-comment .dragon .am-comment-meta{
	background: url(../img/assemble/dragon-top.png)!important;
	background-size: 100% 100%!important;	
	padding-bottom:2px;
	height: 180px;
    padding-top: 88px;
    background-color: transparent!important;
    padding-left: 20px;
    padding-right: 23.5%;
}

.am-comment .dragon .am-comment-hd {
	border-bottom:none;
	width: 123%;
    background:transparent
}

.am-comment .dragon .am-comment-info {
	margin-top:10px;
    color: gold;
}

.dragon .am-comment-bd {
	background: url(../img/assemble/dragon-bottom.png)!important;
    background-size: 100% 40px!important;
    background-repeat: no-repeat!important;
    background-position: bottom center!important;
    padding: 0 20px 20px 20px!important;
    margin-top: -40px;
    color: gold;
}

.dragon .am-comment-meta a {
	color: gold;
}



.dragon {
	border:none;
	background-color:transparent;
}

.dragon + .am-avatar {
	top:80px!important;
}

.dragon:before {
	content: "";
	background-image: url(../img/assemble/dragon-mid.png)!important;
	background-size:100%!important;
	width:100%!important;
    height: calc(100% - 140px)!important;
	border: none;
    right: 0!important;
    top: 0px!important;
    z-index:-1!important;
    left: 0px!important;
    margin-top: 120px;
}

 .dragon:after {
 	border-style:none!important;
 }
 
.dragon .am-comment-actions {
	margin-top: 10px;
    background: transparent!important;
}

.dragon blockquote {
	background-color: transparent!important;
	border-left: 4px solid gold;
}

.dragon .liked {
	color:gold!important
}

.am-comment-flip .dragon .am-comment-actions {
    transform: scaleX(-1);
    color: gold;
    float:left;
}

.dragon-avatar {
	margin-left: -53px;
    width: 59px;
    height: 56px;
    margin-top: -13px;
    margin-right: -47px;
    background: url(../img/assemble/dragon-avatar.png) no-repeat;
    background-size: 53px 53px;
}

@media only screen and (min-width: 641px) {
.dragon-avatar {
	width: 72px;
    height: 71px;
    margin-left: -64px;
    margin-right: -56px;
    margin-top: -19px;
    background-size: 65px 68px;
}
}

.love .am-comment-meta{
	background: url(../img/assemble/love-top.png)!important;
	background-size: 100% 100%!important;	
	padding-bottom:2px;
}

.love .am-comment-hd {
	border-bottom:none;
	width: calc(100% + 80px);
    margin-left: -50px;
    height: 100px;
    background: transparent;
}

.love .am-comment-bd {
	background: url(../img/assemble/love-bottom.png)!important;
    background-size: 100% 110px!important;
    background-repeat: no-repeat!important;
    background-position: bottom center!important;
    padding: 0 50px 110px 80px!important;
    width: calc(100% + 80px);
    margin-left: -50px;
}

.love .am-comment-info {
	margin-top:50px;
	margin-left:80px;
}

.love {
	border:none;
	background-color:transparent;
}

.love blockquote {
	background:transparent;
}

.love:before {
	content: "";
    background-image: url(../img/assemble/love-mid.png)!important;
    background-size: 100% 100%!important;
    width: calc(100% + 80px)!important;
    height: calc(100% - 210px)!important;
    border: none;
    right: 0!important;
    top: 0px!important;
    z-index: -1!important;
    left: 0px!important;
    margin-left: -50px;
    margin-top: 100px;
}

.love:after {
 	border-style:none!important;
 }
 
.love .am-comment-ellipsis {
	max-width:55%;
} 
 
.love .am-comment-actions {
	margin-top: 50px;
	margin-right: 40px;
    background: transparent!important;
}

.love + .am-avatar {
	top:80px!important;
}

.love-avatar {
	margin-left: -48px;
    width: 73px;
    height: 88px;
    margin-top: -11px;
    margin-right: -64px;
    background: url(../img/assemble/love-avatar.png) no-repeat;
    background-size: 54px 54px;
}

@media only screen and (min-width: 641px) {
.love-avatar {
	width: 120px;
    height: 83px;
    margin-left: -59px;
    margin-right: -110px;
    margin-top: -14px;
    background-size: 67px 67px;
}
}

.spring .am-comment-meta{
	background: url(../img/assemble/spring-top.png)!important;
	background-size: 100% 100%!important;	
	padding-bottom:2px;
}

.spring .am-comment-hd {
	border-bottom:none;
}

.spring .am-comment-bd {
	background: url(../img/assemble/spring-bottom.png)!important;
    background-size: 100% 30px!important;
    background-repeat: no-repeat!important;
    background-position: bottom center!important;
    padding: 0 20px 30px 20px!important;
    color:darkgreen;    
}

.spring .am-comment-info {
	margin-top:10px;
	margin-left:10px;
	color:darkgreen;
}

.spring .am-comment-info a {
	color:darkgreen;
}

.spring {
	border:none;
	background-color:transparent;
}

.spring:before {
	content: "";
	background-image: url(../img/assemble/spring-mid.png)!important;
	background-size:100% 100%!important;
	width:100%!important;
	height:calc(100% - 30px)!important;
	border: none;
    right: 0!important;
    top: 0px!important;
    z-index:-1!important;
    left: 0px!important;
}

 .spring:after {
 	border-style:none!important;
 }
 
.spring .am-comment-actions {
	margin-top: 10px;
    background: transparent!important;
}

.spring .am-comment-meta {
	padding-left:10px;
}

.spring + .am-avatar {
	top:10px!important;
}

.spring blockquote {
	background: transparent;
	border-left: 4px solid seagreen;
	color: darkgreen
}

.spring .liked, .spring span {
	color: darkgreen!important;
}

.spring-avatar {
	margin-left: -50px;
    width: 59px;
    height: 56px;
    margin-top: -9px;
    margin-right: -50px;
    background: url(../img/assemble/spring-avatar.png) no-repeat;
    background-size: 53px 53px;
}

@media only screen and (min-width: 641px) {
.spring-avatar {
	width: 72px;
    height: 71px;
	margin-left: -58px;
    margin-right: -60px;
    margin-top: -12px;
    background-size: 65px 68px;
}
}


.ink .am-comment-meta{
	background: url(../img/assemble/ink-top.png)!important;
	background-size: 100% 100%!important;	
	padding-bottom:2px;
}

.ink .am-comment-hd {
	border-bottom:none;
}

.ink .am-comment-bd {
	background: url(../img/assemble/ink-bottom.png)!important;
    background-size: 100% 30px!important;
    background-repeat: no-repeat!important;
    background-position: bottom center!important;
    padding: 0 20px 30px 30px!important;
    color:black;    
}

.ink .am-comment-info {
	margin-top:10px;
	margin-left:10px;
	color:black;
}

.ink .am-comment-info a {
	color:black;
}

.ink {
	border:none;
	background-color:transparent;
}

.ink:before {
	content: "";
	background-image: url(../img/assemble/ink-mid.png)!important;
	background-size:100%!important;
	width:100%!important;
	height:calc(100% - 88px)!important;
	border: none;
    right: 0!important;
    top: 58px!important;
    z-index:-1!important;
    left: 0px!important;
}

 .ink:after {
 	border-style:none!important;
 }
 
.ink .am-comment-actions {
	margin-top: 10px;
    background: transparent!important;
}

.ink .am-comment-meta {
	padding-left:10px;
}

.ink + .am-avatar {
	top:10px!important;
}

.ink blockquote {
	background: transparent;
	border-left: 4px solid black;
	color: black
}

.ink .liked, .ink span {
	color: black!important;
}


.thick-ink .am-comment-meta{
	background: url(../img/assemble/thick-ink-top.png)!important;
	background-size: 100% 100%!important;	
	padding-bottom:2px;
}

.thick-ink .am-comment-hd {
	border-bottom:none;
}

.thick-ink .am-comment-bd {
	background: url(../img/assemble/thick-ink-bottom.png)!important;
    background-size: 100% 30px!important;
    background-repeat: no-repeat!important;
    background-position: bottom center!important;
    padding: 0 20px 30px 30px!important;
    color:white;    
}

.thick-ink .am-comment-info {
	margin-top:10px;
	margin-left:10px;
	color:white;
}

.thick-ink .am-comment-info a {
	color:white;
}

.thick-ink {
	border:none;
	background-color:transparent;
}

.thick-ink:before {
	content: "";
	background-image: url(../img/assemble/thick-ink-mid.png)!important;
	background-size:100%!important;
	width:100%!important;
	height:calc(100% - 88px)!important;
	border: none;
    right: 0!important;
    top: 58px!important;
    z-index:-1!important;
    left: 0px!important;
}

 .thick-ink:after {
 	border-style:none!important;
 }
 
.thick-ink .am-comment-actions {
	margin-top: 10px;
    background: transparent!important;
}

.thick-ink .am-comment-meta {
	padding-left:10px;
}

.thick-ink + .am-avatar {
	top:10px!important;
}

.thick-ink blockquote {
	background: transparent;
	border-left: 4px solid white;
	color: white
}

.thick-ink .liked, .thick-ink span {
	color: white!important;
}

.ink-avatar {
	margin-left: -50px;
    width: 59px;
    height: 56px;
    margin-top: -9px;
    margin-right: -50px;
    background: url(../img/assemble/ink-avatar.png) no-repeat;
    background-size: 53px 53px;
}

@media only screen and (min-width: 641px) {
.ink-avatar {
	width: 72px;
    height: 71px;
	margin-left: -58px;
    margin-right: -60px;
    margin-top: -12px;
    background-size: 65px 68px;
}
}

.color-avatar {
	margin-left: -59px;
    width: 70px;
    height: 80px;
    margin-top: -21px;
    margin-right: -51px;
    background: url(../img/assemble/color-avatar.png) no-repeat;
    background-size: 80px 80px;
}

@media only screen and (min-width: 641px) {
.color-avatar {
	width: 80px;
    height: 87px;
    margin-left: -68px;
    margin-right: -56px;
    margin-top: -22px;
    background-size: 90px 90px;
}
}

.child .am-comment-meta{
	background: url(../img/assemble/child-top.png)!important;
	background-size: 100% 100%!important;	
	padding-bottom:2px;
}

.child .am-comment-hd {
	border-bottom:none;
}

.child .am-comment-bd {
	background: url(../img/assemble/child-bottom.png)!important;
    background-size: 100% 120px!important;
    background-repeat: no-repeat!important;
    background-position: bottom center!important;
    padding: 0 20px 120px 20px!important;
    color:black;    
}

.child .am-comment-info {
	margin-top:10px;
	margin-left:10px;
	color:black;
}

.child .am-comment-info a {
	color:black;
}

.child {
	border:none;
	background-color:transparent;
}

.child:before {
	content: "";
	background-image: url(../img/assemble/child-mid.png)!important;
	background-size:100%!important;
	width:100%!important;
	height:calc(100% - 178px)!important;
	border: none;
    right: 0!important;
    top: 58px!important;
    z-index:-1!important;
    left: 0px!important;
}

 .child:after {
 	border-style:none!important; 
 }
 
 
.child .am-comment-actions {
	margin-top: 10px;
    background: transparent!important;
}

.child .am-comment-meta {
	padding-left:30px;
}

.child + .am-avatar {
	top:10px!important;
}

.child blockquote {
	background: transparent;
	border-left: 4px solid black;
	color: black
}

.child .liked, .child span {
	color: black!important;
}

.child-avatar {
	margin-left: -50px;
    width: 59px;
    height: 56px;
    margin-top: -9px;
    margin-right: -50px;
    background: url(../img/assemble/child-avatar.png) no-repeat;
    background-size: 58px 58px;
}

@media only screen and (min-width: 641px) {
.child-avatar {
	width: 71px;
    height: 71px;
	margin-left: -58px;
    margin-right: -60px;
    margin-top: -12px;
    background-size: 70px 73px;
}
}

.pool .am-comment-meta{
	background: url(../img/assemble/pool-top.png)!important;
	background-size: 100% 100%!important;	
	padding-bottom:2px;
	height:140px;
}

.pool .am-comment-hd {
	border-bottom:none;
	margin-left: -30px;
    width: 114%;
}

.pool .am-comment-bd {
	background: url(../img/assemble/pool-bottom.png)!important;
    background-size: 100% 100px!important;
    background-repeat: no-repeat!important;
    background-position: bottom center!important;
    padding: 0 50px 60px 70px!important;
    color:dimgray;    
    margin-left: -30px;
    width: 114%;
}

.pool .am-comment-info {
	margin-top:80px;
	margin-left:40px;
	color:dimgray;
}

.pool .am-comment-info a {
	color:dimgray;
}

.pool {
	border:none;
	background-color:transparent;
}

.pool:before {
	content: "";
	background-image: url(../img/assemble/pool-mid.png)!important;
	background-size:100%!important;
	width:114%!important;
	height:calc(100% - 138px)!important;
	border: none;
    right: 0!important;
    top: 58px!important;
    z-index:-1!important;
    left: 0px!important;
    margin-left:-30px;
}

 .pool:after {
 	border-style:none!important; 
 }
 
 
.pool .am-comment-actions {
	margin-top: 10px;
    background: transparent!important;
}

.pool .am-comment-meta {
	padding-left:30px;
}

.pool + .am-avatar {
	top:60px!important;
	z-index:100;
}

.pool blockquote {
	background: transparent;
	border-left: 4px solid black;
	color: dimgray
}

.pool .liked, .pool span {
	color: dimgray!important;
}

.sea-avatar {
	margin-left: -50px;
    width: 83px;
    height: 65px;
    margin-top: -5px;
    margin-right: -71px;
    background: url(../img/assemble/sea-avatar.png) no-repeat;
    background-size: 60px 46px;
}

@media only screen and (min-width: 641px) {
.sea-avatar {
    width: 84px;
    height: 63px;
    margin-left: -60px;
    margin-right: -70px;
    margin-top: -6px;
    background-size: 74px 56px;
}
}


.sea .am-comment-meta{
	background: url(../img/assemble/sea-top.png)!important;
	background-size: 100% 100%!important;	
	padding-bottom:2px;
}

.sea .am-comment-hd {
	border-bottom:none;
	margin-left: -21px;
    width: 107%;
}

.sea .am-comment-bd {
	background: url(../img/assemble/sea-bottom.png)!important;
    background-size: 100% 120px!important;
    background-repeat: no-repeat!important;
    background-position: bottom center!important;
    padding: 10px 20px 120px 40px!important;
    color:black;    
    margin-left: -21px;
    width: 107%;
}

.sea .am-comment-info {
	margin-top:10px;
	margin-left:10px;
	color:black;
}

.sea .am-comment-info a {
	color:black;
}

.sea {
	border:none;
	background-color:transparent;
}

.sea:before {
	content: "";
	background-image: url(../img/assemble/sea-mid.png)!important;
	background-size:100%!important;
	width:107%!important;
	height:calc(100% - 178px)!important;
	border: none;
    right: 0!important;
    top: 58px!important;
    z-index:-1!important;
    left: 0px!important;
    margin-left:-21px;
}

 .sea:after {
 	border-style:none!important; 
 }
 
 
.sea .am-comment-actions {
	margin-top: 10px;
    background: transparent!important;
}

.sea .am-comment-meta {
	padding-left:30px;
	height:100px;
	padding-top:65px;
}

.sea + .am-avatar {
	top:50px!important;
}

.sea blockquote {
	background: transparent;
	border-left: 4px solid black;
	color: black
}

.sea .liked, .sea span {
	color: black!important;
}

.glass {
    border-radius: 20px;
    color: #333;
    background: linear-gradient(to bottom, #87CEFA, #1E90FF); /* 蓝色渐变背景 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 较明显的阴影效果 */
    padding: 20px;
    backdrop-filter: blur(10px); /* 毛玻璃效果 */
    border: 1px solid rgba(255, 255, 255, 0.5); /* 边框 */
    position: relative;
    overflow: hidden; /* 防止伪元素溢出 */
}

.glass .am-comment-hd {
	background-color: transparent;
	
}

.glass .am-comment-meta {
	background-color: transparent;
	color: black
}

.glass .am-comment-meta a{
	color: black
}

.glass .am-comment-actions {
	background-color: transparent;
}

.glass blockquote {
	background-color: transparent;
}

.glass::before,
.glass::after,
.glass .am-comment-bd::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border:none!important;
    z-index:0;
}

.glass::before {
    width: 100px;
    background-image: url(../img/assemble/cloud1.png)!important;
	background-size:100%!important;
    height: 66px;
    top: 100px;
    left: 0% !important;
    transform: translateX(-50%);
    animation: float1 5s ease-in-out infinite;
}

.glass::after {
	background-image: url(../img/assemble/cloud2.png)!important;
	background-size:100%!important;
	background-repeat: no-repeat;
    width: 74px;
    height: 50px;
    bottom: -30px;
    right: 10px!important;
    left: 247px;
    animation: float2 7s ease-in-out infinite;
}

.glass .am-comment-bd {
	z-index: 0;
	position: relative;
}

.glass .am-comment-bd::after {
	background-image: url(../img/assemble/cloud1.png)!important;
	background-size:100%!important;
	background-repeat: no-repeat;
    width: 110px;
    height: 60px;
    bottom: -30px;
    right: 10px!important;
    left: 171px;
    top:200px;
    animation: float3 7s ease-in-out infinite;
    z-index: -1;
}


@keyframes float1 {
    0% {
        transform: translateX(-50%);
    }
    50% {
        transform: translateX(-30%);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes float2 {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(20px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes float3 {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-20px);
    }
    100% {
        transform: translateX(0);
    }
}

.duck-avatar {
	margin-left: -50px;
    width: 59px;
    height: 56px;
    margin-top: -9px;
    margin-right: -50px;
    background: url(../img/assemble/duck.png) no-repeat;
    background-size: 53px 53px;
}

@media only screen and (min-width: 641px) {
.duck-avatar {
	width: 72px;
    height: 71px;
	margin-left: -58px;
    margin-right: -60px;
    margin-top: -12px;
    background-size: 68px 68px;
}
}

.moon .am-comment-meta{
	background: url(../img/assemble/moon-top.png)!important;
	background-size: 100% 100%!important;	
	padding-bottom:2px;
}

.moon .am-comment-hd {
	border-bottom:none;
	width: 107%;
    margin-left: -15px;
}

.moon .am-comment-bd {
	background: url(../img/assemble/moon-bottom.png)!important;
    background-size: 100% 75px!important;
    background-repeat: no-repeat!important;
    background-position: bottom center!important;
    padding: 0 30px 70px 35px!important;
    color:black;    
    width: 107%;
    margin-left: -15px;
}

.moon .am-comment-info {
	margin-top:10px;
	margin-left:20px;
	color:black;
}

.moon .am-comment-info a {
	color:black;
}

.moon {
	border:none;
	background-color:transparent;
}

.moon:before {
	content: "";
	background-image: url(../img/assemble/moon-mid.png)!important;
	background-size:100%!important;
	width:107%!important;
	height:calc(100% - 133px)!important;
	border: none;
    right: 0!important;
    top: 58px!important;
    z-index:-1!important;
    left: 0px!important;
    margin-left: -15px;
}

 .moon:after {
 	border-style:none!important; 
 }
 
 
.moon .am-comment-actions {
	margin-top: 10px;
    background: transparent!important;
}

.moon .am-comment-meta {
	padding-left:30px;
}

.moon + .am-avatar {
	top:10px!important;
}

.moon blockquote {
	background: transparent;
	border-left: 4px solid black;
	color: black
}

.moon .liked, .moon span {
	color: black!important;
}

.moon-avatar {
	margin-left: -50px;
    width: 54px;
    height: 56px;
    margin-top: -9px;
    margin-right: -50px;
    background: url(../img/assemble/moon-avatar.png) no-repeat;
    background-size: 58px 58px;
}

@media only screen and (min-width: 641px) {
.moon-avatar {
	width: 68px;
    height: 71px;
	margin-left: -58px;
    margin-right: -60px;
    margin-top: -12px;
    background-size: 70px 73px;
}
}
