123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- @charset "UTF-8";
- /**
- * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
- * 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
- * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
- */
- .fui-wrap .u-grid .u-grid-item {
- width: 33.3333%;
- margin-top: 30rpx !important;
- }
- .fui-wrap .u-grid .u-grid-item .grid-item-icon {
- width: 100rpx;
- height: 100rpx;
- background-color: red;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 10rpx;
- }
- .fui-wrap .u-grid .u-grid-item .grid-item-icon image {
- width: 60rpx;
- height: 60rpx;
- }
- .fui-wrap .u-grid .u-grid-item .grid-text {
- font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
- color: #333333;
- margin-top: 10rpx;
- font-size: 28rpx;
- }
- .fui-wrap .u-grid .u-swiper__wrapper__item__wrapper__image {
- border-radius: 0 !important;
- }
- .fui-wrap .u-gap {
- margin-top: 20rpx !important;
- }
- .fui-wrap .u-page-title {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .fui-wrap .u-page-title .line {
- width: 34px;
- height: 1px;
- border: 1px solid #548cf7;
- background-color: #ffffff;
- box-sizing: border-box;
- margin: 0 10rpx;
- }
- .fui-wrap .u-page-title .title-content {
- width: 72px;
- height: 24px;
- background-color: rgba(255, 255, 255, 0);
- box-sizing: border-box;
- font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
- font-weight: 650;
- color: #548cf7;
- text-align: left;
- line-height: normal;
- text-align: center;
- }
- .fui-wrap .u-page-title .rectangle {
- width: 4px;
- height: 14px;
- -webkit-transform: rotate(28deg);
- transform: rotate(28deg);
- border-radius: 4px;
- background-color: #548cf7;
- box-sizing: border-box;
- }
- .fui-wrap .u-page-title .rectangle:nth-child(3) {
- margin: 0 5px;
- background-color: rgba(84, 140, 247, 0.79);
- }
- .fui-wrap .u-page-title .rectangle:nth-child(5) {
- margin: 0 5px;
- background-color: rgba(84, 140, 247, 0.79);
- }
- .fui-wrap .search-content {
- width: 100%;
- height: 80rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #f2f2f2;
- }
- .fui-wrap .search-content .u-search__action {
- color: #3c9cff !important;
- }
- .fui-wrap .search-content .u-search {
- flex: 0.95 !important;
- border: 1px solid #3c9cff !important;
- border-radius: 100px !important;
- background-color: #fefefe !important;
- }
- .fui-wrap .search-content .u-search__content {
- border: none !important;
- background-color: #fefefe !important;
- }
- .fui-wrap .search-content .u-search__content .u-search__content__input {
- background-color: #fefefe !important;
- }
|