1234567891011121314151617181920212223242526272829303132333435363738394041 |
- @charset "UTF-8";
- /* 水平间距 */
- /* 水平间距 */
- .main .one {
- padding: 0 0 2vw 0;
- }
- .main .one .swiper {
- height: 65vw;
- }
- .main .one .swiper .list .image {
- width: 100%;
- height: 100%;
- }
- .main .two .swiper {
- height: 45vw;
- }
- .main .two .swiper .swiper-item {
- display: flex;
- flex-direction: column;
- flex-wrap: wrap;
- }
- .main .two .swiper .swiper-item .list {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: center;
- width: 20vw;
- padding: 1vw 0 0 0;
- }
- .main .two .swiper .swiper-item .list .image {
- width: 15vw;
- height: 15vw;
- border-radius: 15vw;
- box-shadow: 0 0 5px var(--f1Color);
- }
- .main .two .swiper .swiper-item .list .text {
- font-size: var(--font14Size);
- margin-top: 5px;
- color: var(--f85Color);
- }
|