1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /* pagesPublic/pages/tdcr/index.wxss */
- .main {
- height: 100vh;
- background-size: 100% 100%;
- display: flex;
- flex-direction: column;
- }
- .main-header {
- width: 90vw;
- height: 18vh;
- margin: 0 auto;
- margin-top: 11vh;
- }
- .cursor-guy {
- display: flex;
- }
- .cursor-size {
- height: 5vh;
- width: 10vw;
- }
- .main-content {
- width: 100vw;
- height: 16vh;
- margin-top: 5vh;
- background-size: 100% 100%;
- background-position-x: -5vw;
- }
- .item {
- position: relative;
- }
- .item .item-title {
- color: #EFD7BD;
- font-family: Microsoft YaHei;
- font-weight: bold;
- transform: rotate(-16deg);
- transform-origin: center;
- font-size: 22rpx;
- text-shadow: 1px 1px 2px #EFD7BD;
- }
- .item .item-img {
- width: 20vw;
- height: 12vh;
- position: relative;
- }
- .list {
- width: 80vw;
- margin: 0 auto;
- margin-top: 3vh;
- }
- .list-item {
- display: flex;
- }
- .list-item .list-item-img {
- width: 50rpx;
- height: 65rpx;
- }
- .list-item .list-item-txt {
- color: white;
- background: linear-gradient(90deg, rgba(4, 97, 218, 0.3) 0%, rgba(84,132,255,0) 100%);
- line-height: 65rpx;
- padding-left: 12vw;
- }
- .bottom-btn {
- width: 80vw;
- height: 6vh;
- line-height: 6vh;
- font-family: Microsoft YaHei;
- font-weight: bold;
- font-size: 32rpx;
- color: #0F2887;
- text-align: center;
- margin: 0 auto;
- margin-top: 3vh;
- }
|