12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- .titleBox {
- position: relative;
- left: -0.2rem;
- display: flex;
- align-items: center;
- padding-bottom: 0.2rem;
- border-bottom: 1px solid rgba(188, 186, 186, 1);
- }
- .subPage {
- border-bottom: 0 none;
- }
- .titleBar {
- width: 0.07rem;
- height: 0.35rem;
- background: #4a90e2;
- float: left;
- margin-right: 0.1rem;
- }
- .subPage {
- .title {
- background: linear-gradient(
- to bottom,
- transparent 0%,
- transparent 60%,
- #ffe500 61%,
- #ffe500 100%
- );
- }
- }
- .title {
- display: inline-block;
- padding: 0.05rem;
- // width: 100%;
- font-size: 0.36rem;
- font-weight: 600;
- color: #0139f1;
- line-height: 0.32rem;
- }
- .tabs {
- position: absolute;
- top: 0.4rem;
- left: 0.4rem;
- }
|