12345678910111213141516171819202122232425262728293031323334 |
- @import "_stu-box_header.scss";
- .box {
- width: 100%;
- position: relative;
- font-family: 'Source Han Sans';
- background: none;
- display: flex;
- flex-direction: column;
- .box-title {
- width: 100%;
- text-align: center;
- font-weight: 600;
- font-size: 38px;
- color: #fff;
- margin-top: 6px
- }
- .box-body {
- margin: 10px 30px 40px;
- border: 2px solid #fff;
- border-radius: 5px;
- }
- .body-card {
- background: #e9f2fd;
- border-radius: 5px;
- padding: 10px;
- margin-bottom: 10px;
- display: flex;
- position: relative;
- }
- }
|