| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- <template>
- <section class="index-content">
-
- </section>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- },
- computed: {
- },
- methods: {
-
- },
- mounted() {
- },
- created(){
- },
- };
- </script>
- <style lang='scss' scoped>
- section {
- // width:100%;
- .index_header {
- background: #ffffff;
- height: 102px;
- border-radius: 10px;
- display: flex;
- align-items: center;
- .header-item {
- flex: 1;
- display: flex;
- justify-content: space-evenly;
- align-items: center;
- height: 56px;
- &:not(:last-child) {
- border-right: 1px solid #d8d8d8;
- }
- .text {
- font-size: 16px;
- color: #666666;
- }
- .count {
- font-size: 32px;
- }
- .item-img {
- display: flex;
- img {
- width: 56px;
- height: 56px;
- margin-right: 30px;
- }
- .text {
- position: relative;
- top: -8px;
- }
- .count {
- color: #208cfe;
- position: relative;
- bottom: -11px;
- }
- }
- .item-text {
- & > div {
- display: flex;
- align-items: center;
- .text {
- width: 120px;
- }
- }
- }
- }
- }
- .index-main {
- background: #ffffff;
- border-radius: 10px;
- margin-top: 20px;
- padding: 20px;
- .main-item {
- position: relative;
- .item-title {
- font-size: 18px;
- font-weight: bold;
- color: #333333;
- margin-bottom: 20px;
- }
- .item-more {
- position: absolute;
- top: 20px;
- right: 20px;
- font-size: 14px;
- color: #3895fe;
- }
- }
- .main-content {
- display: flex;
- & > div:not(:last-child) {
- border-right: 1px solid #eee;
- }
- .c1 {
- flex: 1;
- .h2 {
- font-size: 14px;
- color: #999999;
- height: 40px;
- line-height: 40px;
- span:nth-of-type(2) {
- margin-left: 20px;
- }
- span:last-child {
- float: right;
- }
- }
- .con2 {
- font-size: 14px;
- color: #333333;
- height: 36px;
- line-height: 36px;
- background: #fafafa;
- border-radius: 7px;
- margin-bottom: 8px;
- padding: 0 10px;
- &:nth-of-type(2) {
- color: #ef3d3d;
- }
- &:nth-of-type(3) {
- color: #fdad23;
- }
- &:nth-of-type(4) {
- color: #56ccf6;
- }
- span:nth-of-type(2) {
- margin-left: 20px;
- }
- span:last-child {
- float: right;
- }
- }
- }
- .c2 {
- flex: 1.5;
- }
- .c1,
- .c2 {
- width: 100%;
- // flex:1;
- padding: 10px;
- box-sizing: border-box;
- }
- .c1-title,
- .c2-title {
- font-size: 15px;
- font-weight: bold;
- color: #666666;
- // margin-top:20px;
- }
- }
- }
- }
- </style>
|