12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- .main {
- height: var(--thrHeight);
- background-color: var(--mainColor);
- .one {
- display: flex;
- flex-direction: row;
- padding: 2vw;
- border-bottom: 1px solid var(--f1Color);
- .one_1 {
- flex-grow: 1;
- input {
- padding: 1vw 0 2vw 2vw;
- background-color: var(--f1Color);
- border-radius: 5px;
- }
- }
- .one_2 {
- width: 20vw;
- button {
- width: 100%;
- padding: 2vw;
- font-size: var(--font14Size);
- }
- }
- }
- .two {
- flex-grow: 1;
- position: relative;
- .list {
- display: flex;
- flex-direction: row;
- height: 120px;
- padding: 2vw;
- margin: 2vw 2vw 0;
- border-radius: 10px;
- .content {
- flex-grow: 1;
- z-index: 999;
- .name {
- font-size: var(--font18Szie);
- text-align: center;
- color: var(--whiteColor);
- }
- .text1 {
- font-size: var(--font14Size);
- text {
- color: var(--whiteColor);
- }
- }
- }
- .logo {
- margin: 5vw 0;
- image {
- width: 80px;
- }
- }
- }
- .list:nth-child(1n) {
- background-image: linear-gradient(to right, #44a2f0, #9bd1fd);
- }
- .list:nth-child(2n) {
- background-image: linear-gradient(to right, #eb5299, #ffaed4);
- }
- }
- }
- .scroll-view {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- .list-scroll-view {
- display: flex;
- flex-direction: column;
- }
- }
|