| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- @charset "UTF-8";
- /* 页面左右间距 */
- /* 文字尺寸 */
- /*文字颜色*/
- /* 边框颜色 */
- /*颜色*/
- /* 图片加载中颜色 */
- /* 行为相关颜色 */
- /* 功能栏字体大小 */
- /*功能栏左侧小图标*/
- .top-title {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- }
- .top-title .title-before {
- display: inline-block;
- background-color: #FA7E67;
- width: 10rpx;
- height: 30rpx;
- margin-right: 16rpx;
- }
- .top-title .title {
- display: inline-block;
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- .top-title .title-after {
- display: inline-block;
- }
- .top-title .title-after .a1 {
- width: 8rpx;
- height: 8rpx;
- background: #FD424B;
- border-radius: 50%;
- margin-bottom: 6rpx;
- margin-top: 16rpx;
- margin-left: 25rpx;
- }
- .top-title .title-after .a2 {
- width: 28rpx;
- height: 4rpx;
- background: #FD424B;
- opacity: 0.1;
- border-radius: 2rpx;
- margin-bottom: 6rpx;
- }
- .top-title .title-after .a3 {
- width: 28rpx;
- height: 4rpx;
- background: #FD424B;
- opacity: 0.45;
- border-radius: 2rpx;
- margin-left: 11rpx;
- }
|