123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- .index {
- font-family: PingFang SC;
- &-header {
- height: 219px;
- padding: 40px 15px 26px 15px;
- background: linear-gradient(179deg, #2D82FB 0%, #1635E1 100%);
- &-box {
- height: 100%;
- background-image: url(../../static/images/index-header-bg.png);
- background-size: 178px 182px;
- background-position: bottom right;
- background-repeat: no-repeat;
- &-1 {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-family: PingFangSC-Heavy, PingFang SC;
- font-size: 20px;
- color: #fff;
- font-weight: bold;
- }
- &-2 {
- margin-top: 24px;
- line-height: 42px;
- font-family: PingFangSC-Heavy, PingFang SC;
- font-size: 30px;
- color: #fff;
- font-weight: bold;
- }
- }
- }
-
- &-main {
- padding: 24px 15px;
- background-color: #EFEFEF;
- border-radius: 15px;
- margin-top: -20px;
- &-menu {
- &-title {
- font-size: 18px;
- font-family: PingFangSC-Regular, PingFang SC;
- }
- &-1 {
- display: flex;
- justify-content: space-between;
- .menu-item {
- width: 30%;
- height: 96px;
- text-align: center;
- background-color: #fff;
- border-radius: 8px;
- &-icon {
- width: 48px;
- margin: 13px auto 5px;
- }
- &-name {
- color: #787878;
- font-size: 13px;
- font-family: 'PingFangSC-Regular, PingFang SC';
- }
- }
- }
-
- &-2 {
- padding: 16px 15px 0;
- background-color: #fff;
- border-radius: 8px;
- margin-top: 15px;
- .menu {
- display: flex;
- flex-wrap: wrap;
- padding: 15px 0 0;
- &-item {
- width: 23%;
- text-align: center;
- margin: 0 1%;
- margin-bottom: 24px;
- &-icon {
- margin: 0 auto 9px;
- }
- &-name {
- font-size: 12px;
- color: #787878;
- font-family: PingFangSC-Regular, PingFang SC;
- // overflow: hidden;
- // white-space: nowrap;
- // text-overflow: ellipsis;
- // word-break: break-all;
- margin: 0 auto;
- width: 90%;
- }
- }
- &-item:nth-child(4n) {
- margin-right: 0;
- }
- }
- }
- }
- }
- }
|