12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- .index {
- font-family: PingFang SC;
- &-header {
- height: 219px;
- padding: 50px 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;
- &-item {
- width: 23%;
- margin-bottom: 24px;
- text-align: center;
- margin-right: 2%;
- &-icon {
- margin: 0 auto 9px;
- }
- &-name {
- font-size: 12px;
- color: #787878;
- font-family: PingFangSC-Regular, PingFang SC;
- }
- }
- &-item:nth-child(4n) {
- margin-right: 0;
- }
- }
- }
- }
- }
- }
|