1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- @charset "UTF-8";
- /* 水平间距 */
- /* 水平间距 */
- .content {
- display: flex;
- flex-direction: column;
- }
- .content .one {
- width: 100%;
- }
- .content .two {
- padding: 1vw 2vw;
- background-color: var(--f8Color);
- }
- .content .two .grid {
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 5px 0 0 0;
- margin: 5px;
- background-color: var(--mainColor);
- border-radius: 10px;
- }
- .content .two .grid .image {
- width: 25px;
- height: 25px;
- }
- .content .two .grid .text {
- font-size: var(--font14Size);
- margin-top: 5px;
- }
- .content .thr {
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- padding: 2vw;
- background-color: var(--f8Color);
- }
- .content .thr .list {
- position: relative;
- width: 43vw;
- padding: 2vw;
- margin: 0 0 2vw 0;
- border-radius: 10px;
- background-color: var(--mainColor);
- }
- .content .thr .list .image {
- width: 100%;
- height: 40vw;
- border-top-right-radius: 10px;
- border-top-left-radius: 10px;
- }
- .content .thr .list .name {
- font-size: var(--font14Size);
- }
|