1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- .fullScreen {
- position: fixed;
- top: 0;
- left: 0;
- height: 100%;
- width: 100%;
- overflow: auto;
- }
- .rcsbFvMain * {
- box-sizing: border-box;
- }
- .rcsbFvMain {
- width: 100%;
- height: 100%;
- background-color: #fff;
- z-index: 10;
- display: flex;
- flex-wrap: nowrap;
- flex-direction: row-reverse;
- }
- .rcsbFvCell {
- }
- .rcsbFvSubtitle {
- font-size: 16px;
- font-family: inherit;
- line-height: 1.1;
- color: inherit;
- margin-bottom: 15px;
- }
- .rcsbFvTitle{
- font-size: 24px;
- font-family: inherit;
- font-weight: bold;
- line-height: 1.1;
- color: inherit;
- margin-bottom: 15px;
- }
- .rcsbFvClose {
- position: absolute;
- right: 10px;
- top:5px;
- cursor: pointer;
- }
|