12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- .termsPanel {
- position: absolute;
- top: 0px;
- right: 0px;
- width: 100%;
- height: 100%;
- background: #ffffff;
- }
- .termsPanel .content {
- width: calc(100% - 80px);
- height: calc(100% - 80px);
- padding: 40px;
- font-size: 20px;
- color: #000;
- line-height: 1.7;
- overflow: hidden;
- overflow-y: auto;
- }
- .termsPanel .close {
- position: absolute;
- top: -15px;
- right: 25px;
- font-size: 50px;
- font-weight: 100;
- color: #aaaaaa;
- cursor: pointer;
- }
- .header {
- text-align: center;
- margin-bottom: 16px;
- font-weight: bold;
- color: #000;
- font-size: 25px;
- }
- .termsPanel .content-box {
- width: 100%;
- height: 100%;
- }
- .termsPanel .underline {
- text-decoration: underline;
- }
- .termsPanel .level-one-title,
- .termsPanel .level-two-title {
- font-weight: bold;
- margin-top: 5px;
- }
- .termsPanel ol li {
- text-indent: 1em;
- }
- .termsPanel ol li p {
- text-indent: 2em;
- }
|