123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- /**index.wxss**/
- page{
- height: 100%;
- background-color: #fff;
- }
- .container{
- height: 100%;
- background-color: #fff;
- padding-bottom: 50rpx;
- }
- .top-container{
- height: 380rpx;
- position: relative;
- display: flex;
- flex-direction: column;
- }
- .bg-img{
- position: absolute;
- width: 100%;
- height: 380rpx;
- z-index: 1;
- }
- .title{
- padding: 30rpx 0;
- font-size: 32rpx;
- color: #333;
- font-weight: bold;
- padding-left: 30rpx;
- }
- .menu-container{
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- padding: 40rpx 74rpx 40rpx 95rpx;
- background-color: #FFFFFF;
- border-radius: 10rpx;
- box-sizing: border-box;
- box-shadow: 0 0 10rpx #efefef
- }
- .ul-item{
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- }
- .item{
- display: flex;
- flex-direction: column;
- align-items: center;
- position: relative;
- }
- .item-img{
- width: 64rpx;
- height: 64rpx;
- }
- .item-name{
- padding-top: 13rpx;
- font-size: 24rpx;
- color: #666666;
- min-width: 80rpx;
- text-align: center;
- }
- .tui-notice-board {
- width: 100%;
- padding-right: 30rpx;
- box-sizing: border-box;
- font-size: 28rpx;
- height: 60rpx;
- background: #fff;
- display: flex;
- align-items: center;
- top: 0;
- z-index: 999;
- }
- .tui-icon-bg {
- padding-left: 10rpx;
- position: relative;
- z-index: 10;
- }
- .tui-rolling-icon {
- margin-right: 12rpx;
- }
- .tui-scorll-view {
- flex: 1;
- line-height: 1;
- white-space: nowrap;
- overflow: hidden;
- color: #999;
- font-size: 24rpx;
- }
- .tui-notice{
- transform: translateX(100%);
- }
- .tui-animation {
- -webkit-animation: tui-rolling 9s linear infinite;
- animation: tui-rolling 9s linear infinite;
- }
- @-webkit-keyframes tui-rolling {
- 0% {
- transform: translateX(100%);
- }
- 100% {
- transform: translateX(-100%);
- }
- }
- @keyframes tui-rolling {
- 0% {
- transform: translateX(100%);
- }
- 100% {
- transform: translateX(-100%);
- }
- }
- .common-list-row{
- display: flex;
- flex-direction: column;
- align-items: center;
- position: relative;
- }
- .common-list-row .common-name{
- font-weight: 600;
- }
- .common-list-row .common-name-ex{
- font-size:24rpx;
- color:#999;
- }
- .common-list-row .common-img{
- float:right;
- flex-direction: column;
- align-items: center;
- height:100rpx;
- width:100rpx;
- }
- .common-list-row .common-img image{
- height:100rpx;
- width:100rpx;
- }
|