12345678910111213141516171819202122232425262728293031323334353637 |
- /**app.wxss**/
- .container {
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- padding: 200rpx 0;
- box-sizing: border-box;
- }
- page {
- padding: 20rpx;
- /* padding右边不起效果解决办法 */
- box-sizing:border-box;
- background-color: #f5f5f5;
- }
- /* text样式 */
- .text {
- font-size: 40rpx;
- font-weight: 600;
- }
- .text_small {
- font-size: 30rpx;
- font-weight: 400;
- }
- /* 文字下方黄色横线 */
- .color_block {
- width: 215rpx;
- height: 20rpx;
- background-color: #FFC300;
- opacity: 0.8;
- z-index: -1;
- }
|