1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /* pages/components/blocks/effect/effect.wxss */
- .function_masker_box {
- margin-bottom: 40rpx;
- min-height: 340rpx;
- position: relative;
- }
- .function_img {
- display: block;
- }
- .function_item_container {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- }
- .function_item {
- width: 25%;
- }
- .subitem_img {
- display: block;
- width: 70%;
- margin: 0 auto;
- }
- .subitem_title {
- font-size: 24rpx;
- text-align: center;
- margin-bottom: 40rpx;
- }
- .m_title {
- color: #fff;
- font-size: 50rpx;
- text-align: center;
- text-shadow: 0 0 2rpx rgba(0, 0, 0, 0.5);
- font-weight: 500;
- position: absolute;
- left: 0;
- right: 0;
- top: 50%;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- .function_rounds {
- display: inline-block;
- width: 24rpx;
- height: 24rpx;
- background: #fff;
- border-radius: 50%;
- margin: 0 10rpx;
- line-height: 15rpx;
- }
- .look_btn {
- display: inline-block;
- font-size: 28rpx;
- border: 1rpx solid #fff;
- border-radius: 10rpx;
- padding: 10rpx 20rpx;
- }
|