12345678910111213141516171819202122232425 |
- /* 居中标题 */
- .venter-the-title {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 44rpx;
- width: 100%;
- font-size: 32rpx;
- text-align: center;
- color: #000000;
- margin: 30rpx 0 20rpx;
- }
- .venter-the-title>text {
- display: inline-block;
- padding: 0 20rpx;
- }
- .venter-the-title>view {
- width: 44rpx;
- height: 4rpx;
- background: #4DC2D4;
- border-radius: 2rpx;
- opacity: 0.5;
- }
|