123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- /* pages/student_address_book/student_address_book.wxss */
- @import '../../templates/footer_teacher/footer.wxss';
- @import '../../templates/nodata/nodata.wxss';
- @import '../../templates/loading/loading.wxss';
- .log-list {
- display: flex;
- flex-direction: column;
- }
- .log-item {
- margin-bottom: 15rpx;
- color: #393939;
- font-size: 34rpx;
- }
- .title {
- height: 60rpx;
- line-height: 60rpx;
- padding-left: 40rpx;
- font-size: 30rpx;
- color: #393939;
- background: #F1F3FA;
- margin-top:60rpx;
- }
- .title:first-child {
- margin-top:0;
- }
- .list-group-items{
- background: #fff;
- }
- .list-group-item {
- display: flex;
- -webkit-box-align: center;
- align-items: center;
- padding: 40rpx 0;
- margin: 0 40rpx;
- border-bottom: 1rpx solid #E5E5E5;
- }
- /* .list-group-item:nth-last-child(1) {
- border-bottom: none;
- } */
- .list-group-item:last-child {
- padding-bottom: 60rpx;
- }
- .img-list{
- position: relative;
- display: inline-block;
- }
- .list-group-item .icon {
- width:116rpx;
- height:116rpx;
- border-radius:50%;
-
- }
- .icon-tips{
- width: 44rpx;
- height: 44rpx;
- border-radius: 50%;
- position: absolute;
- top: 30%;
- left:-20rpx;
- }
- ::-webkit-scrollbar{
- width: 0;
- height: 0;
- color: transparent;
- }
- .list-shortcut {
- position: fixed;
- z-index: 30;
- right: 0;
- top: 50%;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- width: 20px;
- padding: 20px 0;
- border-radius: 10px;
- text-align: center;
- /* background: rgba(0,0,0,.3); */
- font-family: Helvetica;
- }
- .list-shortcut-num{
- display: block;
- padding: 3px;
- line-height: 1;
- color: #4667F6;
- font-size: 22rpx;
- }
- .current{
- color: #ffcd32 !important;
- }
- .list-fixed {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- }
- .fixed-title {
- height:60rpx;
- line-height:60rpx;
- padding-left:40rpx;
- font-size:12px;
- color:rgba(255, 255, 255, 1);
- background:#F1F3FA;
- }
- .icon-right{
- display: inline-block;
- color: #7C819D;
- font-size: 24rpx;
- margin-left: 22rpx;
- }
- .log-item-noset{
- margin-left: 9rpx;
- background:rgba(119,138,220,1);
- border-radius:16rpx;
- padding: 0 20rpx;
- color: #fff;
- font-size: 20rpx;
- line-height: 32rpx;
- text-align: center;
- }
- .search-container{
- padding:20rpx 24rpx;
- background: #FFFFFF
- }
- .search-wrapper {
-
- background: #F1F3FA;
- border-radius: 10rpx;
- padding: 20rpx 30rpx;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- }
- .search-icon {
- width: 30rpx;
- height: 30rpx;
- margin-right: 20rpx;
- }
- .search-input {
- flex: 1;
- font-size: 28rpx;
- color: #333;
- }
- .sign-in{
- width:252rpx;
- height:98rpx;
- background:linear-gradient(-55deg,rgba(248,88,54,1),rgba(255,128,158,1));
- box-shadow:0px 0px 14rpx 0px rgba(255,100,101,0.5);
- border-radius:49rpx;
- position: fixed;
- bottom: 154rpx;
- left: 33.2%;
- color: #FFFFFF;
- font-size: 28rpx;
- text-align: center;
- line-height: 98rpx;
- }
- .sign-in-img{
- width: 30rpx;
- height: 34rpx;
- margin-right: 10rpx;
- }
- .words{
- color: #393939;
- font-size: 34rpx;
- }
- .words-gray{
- color: #7b809d !important;
- }
|