123456789101112131415161718192021222324252627282930 |
- /* pages/index/index.wxss */
- /* 轮播图区域 */
- .banners{
- width: 100%;
- height: 400rpx;
- padding: 2rpx 0;
- }
- .banners image{
- width: 100%;
- height: 100%;
- }
- /* 文本区 */
- .textContainer{
- margin: 20rpx;
- }
- /* 标题 */
- .titleHead{
- font-size: 50rpx;
- margin-bottom: 40rpx;
- font-weight: bold;
- }
- /* 内容 */
- .introContent{
- font-size: 42rpx;
- font-family: '仿宋';
- }
|