123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- .sp-col-45 {
- width: 45%;
- float: left;
- }
- .sp-page {
- float: left;
- width: 100%;
- }
- .sp-box {
- width: 100%;
- padding: 8px 0;
- display: inline-block;
- float: left;
- clear: both;
- }
- .sp-pb-5 {
- padding-bottom: 5px;
- }
- .sp-bg-white {
- background-color: #fff !important;
- }
- .sp-text-right {
- text-align: right !important;
- }
- .sp-fs-12 {
- font-size: 12px !important;
- }
- .sp-fs-20 {
- font-size: 20px !important;
- }
- #clickCard {
- margin: 20px auto;
- width: 100px;
- height: 100px;
- padding: 25px;
- border-radius: 100px;
- background: #008FFF;
- cursor: pointer;
- position: relative;
- }
- #clickCard.gray {
- background: #e3e3e3;
- }
- #clickCard span {
- width: 70px;
- text-align: center;
- display: inline-block;
- position: absolute;
- left: 50%;
- top: 45%;
- transform: translate(-50%,-50%);
- color: white;
- }
|