/**index.wxss**/
.htmlBox {
position: fixed;
width: 100%;
height: 100%;
overflow: hidden;
}
.logo {
height: 10%;
width: 100%;
background-color: #f0e500;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.rtuCode-input-box{
color:darkgray;
font-size:22rpx;
padding-left: 5rpx;
}
.logo .titleIcon {
height: 100rpx;
display: inline-flex;
justify-content: center;
flex-direction: row;
}
.logo .imagebox {
margin-left: 4rpx;
margin-right: 4rpx;
display: inline-flex;
flex-direction: column;
justify-content: center;
}
.logo .titleIconItem {
width: 100rpx;
}
.county {
width: 30%;
}
.viewBox {
width: 100%;
height: 90%;
}
.topBar {
display: flex;
flex-direction: row;
justify-content: space-around;
background-color: goldenrod;
height: 10%;
align-items: center;
}
.newsNormal {
height: 40rpx;
display: flex;
align-items: flex-end;
border-bottom: 2px transparent solid;
color: black;
}
.newsSelected {
border-bottom: 2px orchid solid;
height: 40rpx;
display: flex;
align-items: flex-end;
color: #21ac00;
}
.tabText {
text-align: center;
font-size: 32rpx;
}
.ViewContent {
height: 100%;
width: 100%;
}
.toolBar{
width:100%;
display: flex;
flex-direction: row;
justify-content: center;
margin-top: 20rpx;
margin-bottom: 20rpx;
}
.listContainer {
height: 100%;
width: 100%;
padding-left: 30rpx;
display: flex;
flex-direction: column;
}
.titlebox {
width: 100%;
height: 60rpx;
margin: 4rpx 4rpx 4rpx 4rpx;
display: flex;
flex-direction: row;
white-space: nowrap;
justify-content: center;
align-items: center;
}
.publish_button {
height:80rpx;
width: 200rpx;
background-color: yellow;
border-top-left-radius: 40rpx;
border-bottom-left-radius: 40rpx;
display: flex;
flex-direction: row;
align-items: center;
}
.publish_button image{
height: 60rpx;
width: 60rpx;
margin-left: 40rpx;
}
.publish_button_box{
height:80rpx;
width: 200rpx;
position: absolute;
right: 0rpx;
bottom: 40rpx;
}
.pulish_button_show{
animation: move_show 1s 1;
animation-fill-mode:forwards;
}
.pulish_button_hide{
animation: move_hide 1s 1;
animation-fill-mode:forwards;
}
@keyframes move_show{
from {right:-200rpx;}
to {right:0rpx;}
}
@keyframes move_hide{
from {right:0rpx;}
to {right:-200rpx;}
}
.flex-wrp{
display: flex;
justify-content: center;
}
/* .weui-input input{
border-style: groove;
border-color: red;
} */