123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- /* 顶部 */
- .header {
- display: flex;
- align-items: center;
- width: 750rpx;
- height: 88rpx;
- background-color: var(--bgColor);
- &_title {
- height: 50rpx;
- font-size: 36rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- margin: 0 8rpx 0 24rpx;
- }
- }
- /* 滚动播放 */
- .notice-bar {
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- .iconfont {
- color: #FA8C16;
- margin-right: 20rpx;
- }
- }
- /* 轮播图区域 */
- .banner {
- height: 240rpx !important;
- swiper-item {
- width: 100vw;
- height: 240rpx !important;
- image {
- width: 100vw;
- height: 240rpx;
- }
- }
- }
- /* 宫格 */
- .grld {
- width: 100vw;
- background-color: #fff;
- &-title {
- height: 36rpx;
- line-height: 36rpx;
- padding: 40rpx 30rpx 20rpx;
- .content {
- font-size: 30rpx;
- font-family: AppleSystemUIFont-Bold, AppleSystemUIFont;
- font-weight: bold;
- color: #333333;
- }
- .iconfont {
- font-size: 28rpx;
- margin-right: 15rpx;
- }
- }
- .main {
- display: flex;
- flex-wrap: wrap;
- .item {
- width: 25%;
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 20rpx 0;
- border-radius: 16rpx;
- .icon-box {
- width: 100rpx;
- height: 100rpx;
- text-align: center;
- line-height: 100rpx;
- border-radius: 16rpx;
- .iconfont{
- font-size: 38rpx;
- }
- }
- .name {
- width: 80%;
- text-align: center;
- height: 30rpx;
- font-size: 24rpx;
- font-family: AppleSystemUIFont-Regular, AppleSystemUIFont;
- color: #333333;
- margin-top: 12rpx;
- }
- }
- }
- }
|