1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- .main {
- position: relative;
- width: 100%;
- }
- .main .one {
- position: relative;
- height: 90px;
- overflow: hidden;
- padding: 10px;
- background-color: #2E36431f;
- }
- .main .one_1 {
- position: relative;
- height: 90px;
- background-image: linear-gradient(to right, #409eff9f, #9198e5);
- border-radius: 15px;
- }
- .main .one .left {
- float: left;
- width: 66px;
- margin: 10px;
- }
- .main .one .left button {
- padding: 0;
- background-color: transparent;
- border-radius: 50%;
- }
- .main .one .left .image {
- display: block;
- width: 66px;
- height: 66px;
- overflow: hidden;
- border-radius: 50%;
- background-color: transparent;
- }
- .main .one .right {
- float: left;
- margin: 18px 0;
- }
- .main .one .right .name {
- margin: 0 0 5px 0;
- }
- .main .one .right .name text:first-child {
- font-size: 18px;
- color: #fff;
- }
- .main .one .right .name text:last-child {
- font-size: 14px;
- color: #000;
- margin: 0 0 0 5px;
- }
- .main .one .right .other {
- color: #fff;
- }
- .main .two {
- position: relative;
- padding: 10px;
- }
- .main .two .list {
- float: left;
- width: 22.6%;
- text-align: center;
- box-shadow: 0 0 5px #ccc;
- margin: 0 10px 10px 0;
- border-radius: 10px;
- }
- .main .two .list:nth-child(4n) {
- margin: 0 0 10px 0;
- }
- .main .two .list .icon {
- font-size: 30px;
- margin: 10px 0 5px 0;
- }
- .main .two .list .title {
- font-size: 10px;
- margin: 0 0 10px 0;
- }
|