1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /* 学院列表 */
- .school {
- background-color: #f2f2f2;
- min-height: calc(100vh - 44px);
-
- /* 搜索 */
- &-search {
- width: calc(100% - 60rpx);
- margin: 0 auto;
- padding: 29rpx 0;
- }
-
- /* 列表 */
- &-list {
- &-item {
- margin-bottom: 20rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- background-color: #fff;
- border-radius: 10rpx;
- padding: 40rpx 30rpx;
- &-left {
- display: flex;
- align-items: center;
- .image {
- width: 112rpx;
- height: 112rpx;
- border: solid 1px #E0E0E0;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-right: 22rpx;
- border-radius: 10rpx;
- image {
- width: 112rpx;
- height: 122rpx;
- }
- }
- .title {
- font-size: 26rpx;
- color: #6f6f6f;
- .name {
- font-size: 32rpx;
- color: #000;
- margin-bottom: 18rpx;
- font-weight: 600;
- }
- .grade {
- display: flex;
- .icon {
- margin-right: 84rpx;
- .icon-img {
- margin-right: 8rpx;
- }
- }
- }
- }
- }
- &-right {
- color: #000000;
- }
- }
- }
- }
|