1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- @charset "UTF-8";
- /**
- * uni-app内置的常用样式变量
- */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .agreen {
- padding: 40rpx 32rpx;
- box-sizing: border-box;
- background-color: #ffffff;
- }
- .tit {
- font-size: 40rpx;
- color: #333333;
- font-weight: bold;
- text-align: center;
- margin-bottom: 36rpx;
- }
- .tits {
- font-size: 32rpx;
- color: #333333;
- font-weight: 500;
- line-height: 68rpx;
- }
- .txt {
- font-size: 30rpx;
- color: #343434;
- text-indent: 2em;
- margin-bottom: 20rpx;
- }
- .txt.tn2 {
- text-indent: 0;
- }
|