| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- /**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;
- } */
|