123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- @charset "UTF-8";
- /* 需要放到文件最上面 */
- /* 水平间距 */
- /* 水平间距 */
- /*
- 以下变量是默认值,如不需要修改可以不用给下面的变量重新赋值
- */
- /* 水平间距 */
- .index-container {
- box-sizing: border-box;
- position: relative;
- }
- .index-container .project-box {
- padding: 20rpx 30rpx;
- display: flex;
- justify-content: space-between;
- background-color: #ffffff;
- border-top: 1px solid #EDEDED;
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- z-index: 99;
- }
- .index-container .project-box .project-name {
- display: flex;
- align-items: center;
- font-weight: 400;
- align-items: center;
- flex: 1;
- width: 0;
- overflow: hidden;
- }
- .index-container .project-box .project-icon {
- margin-left: 8rpx;
- }
- .index-container .project-box .change-role {
- font-size: 24rpx;
- color: #909399;
- border: 1px solid #DCDCDC;
- width: 160rpx;
- height: 40rpx;
- border-radius: 40rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .index-container .project-box .role-icon {
- margin-right: 8rpx;
- }
- .index-container .project-box .role-icon text {
- color: #909399 !important;
- }
- .index-container .banner-box {
- padding: 30rpx;
- box-sizing: border-box;
- margin-top: 86rpx;
- }
- .index-container .banner-box .swiper-box {
- height: 400rpx;
- border-radius: 20rpx;
- overflow: hidden;
- }
- .index-container .banner-box .swiper-item {
- width: 100%;
- height: 100%;
- background-size: cover;
- background-position: bottom;
- }
- .index-container .banner-box .swiper-item-box:first-child {
- border-radius: 20rpx 0 0 20rpx;
- }
- .index-container .banner-box .swiper-item-box:last-child {
- border-radius: 0 20rpx 20rpx 0;
- }
- .index-container .grid {
- display: flex;
- flex-wrap: wrap;
- padding: 0 30rpx;
- box-sizing: border-box;
- }
- .index-container .grid .grid-item {
- flex: 1;
- height: 180rpx;
- border-radius: 16rpx;
- color: #ffffff;
- display: flex;
- align-items: center;
- padding: 0 20rpx;
- justify-content: space-between;
- }
- .index-container .grid .grid-item.red {
- background: linear-gradient(to right, #f24f68, #ed8598);
- }
- .index-container .grid .grid-item.blue {
- background: linear-gradient(to right, #459fe6, #6cc9e4);
- }
- .index-container .grid .label {
- font-size: 32rpx;
- margin-bottom: 5px;
- }
- .index-container .grid .sub-label {
- color: #eee;
- font-size: 24rpx;
- display: flex;
- align-items: center;
- height: 40rpx;
- opacity: 0.5;
- }
- .index-container .grid .sub-label-icon text {
- color: #eee !important;
- }
- .index-container .grid .grid-item:nth-child(2n) {
- margin-left: 30rpx;
- }
- .index-container .grid .home-filled {
- opacity: 0.3;
- }
- .index-container .grid .home-filled text {
- color: #eee !important;
- }
- .index-container .house-box {
- padding: 0 30rpx;
- box-sizing: border-box;
- }
- .index-container .house-box .good-box {
- margin-top: 30rpx;
- position: relative;
- text-align: center;
- }
- .index-container .house-box .good-box text {
- background: #f8f8f8;
- z-index: 9;
- position: relative;
- padding: 5px 10px;
- color: #909399;
- }
- .index-container .house-box .good-box:before {
- content: '';
- bottom: 20rpx;
- position: absolute;
- left: 0;
- height: 1px;
- right: 0;
- background: #EDEDED;
- z-index: 8;
- }
|