12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- .Five-Conste-box {
- margin: 20px 20px;
- width: 335px;
- height: 180px;
- background: #fbfbfb;
- -webkit-box-shadow: 0 7px 14px 0 rgba(0, 0, 0, 0.04),
- 0 4px 36px 0 rgba(0, 0, 0, 0.08);
- box-shadow: 0 14px 28px 0 rgba(0, 0, 0, 0.04),
- 0 8px 72px 0 rgba(0, 0, 0, 0.08);
- border-radius: 38px;
-
- display: inline-flex;
- .Five-box-imageContent {
- width: 50%;
- height: 100%;
- position: relative;
- .Five-box-image {
- width: 160px;
- height: 190px;
- padding-left: 10px;
-
- filter: grayscale(100%);
- }
- .Five-imageLess {
- filter: grayscale(0%);
- }
- }
-
- .Five-box-content {
- width: 50%;
- height: 100%;
- display: inline-block;
-
- text-align: center;
- .Five-box-C-title {
- font-size: 34px;
- font-weight: bold;
- color: #140f0f;
-
- margin-top: 35%;
- }
-
- .Five-box-C-moon {
- font-size: 22px;
- font-weight: 500;
- color: #140f0f;
- }
- }
- }
|