| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- @import '../../../../themes/page.scss';
- @import "../../../../themes/t.cell.scss";
- @import "../../report-common.scss";
- @import "../../../../themes/card.scss";
- /* module/health/pages/scheme/scheme.wxss */
- .scheme-container {
- background: linear-gradient(180deg, #E3EDFA 0%, #FFFFFF 100%);
- width: 100%;
- height: 100%;
- background-image: url('/module/health/assets/image/bg_interview@2x.png');
- background-repeat: no-repeat;
- background-position: inherit;
- background-size: cover;
- }
- .header-row {
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- }
- .t-cell__note, .t-cell__title {
- margin-left: 0px !important;
- }
- .date-text {
- display: flex;
- align-items: center;
- }
- .recuperate-btn {
- display: inline-block;
- padding: 9px 12px;
- background-color: #1d6ff6;
- color: white;
- border-radius: 4px;
- font-size: 14px;
- text-align: center;
- }
- .card-wrapper {
- --button-line-1: 10px;
- }
- .scheme {
- &__item {
- margin-top: 8px;
- &-title {
- font-size: 14px;
- text-align: center;
- margin-bottom: 8px;
- }
- }
- &__title {
- font-size: 14px;
- font-weight: 600;
- // color: #34A76B;
- color: #1d6ff6;
- }
- &__description {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- margin: 6px 0;
- }
- }
- .scheme-wrapper {
- image {
- height: 90px;
- }
- &+.scheme-wrapper {
- margin-top: 12px;
- }
- color: #D7D9DA;
- .name {
- text-align: center;
- font-size: 15px;
- // color: #34A76B;
- color: #1d6ff6;
- }
- .description {
- margin: 4px 0;
- font-size: 14px;
- }
- .media-container {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- margin: 0 -1%;
- .media {
- flex: none;
- width: 31%;
- margin: 0 1%;
- image,
- video {
- width: 100%;
- height: 100px;
- }
- }
- }
- }
|