| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <template>
- <div>
- <div class="letPlate">
- <div class="tit">
- <span>{{tit}}</span>
- </div>
- <div class="playCode">
- <div class="home flex">
- <span class="teamName">单</span>
- <div>
- <span class="condation">9.5</span>
- <span class="odds">1.28</span>
- </div>
- </div>
- <div class="guest flex">
- <span class="teamName">双</span>
- <div class="oddsBox">
- <span class="odds">1.28</span>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- data(){
- return{
- tit:'角球',
- }
- },
- mounted(){
- }
- }
- </script>
- <style scoped>
- .flex{
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .tit{
- background: #373737;
- font-size: 0.14rem;
- padding: 0 0.1rem;
- height: 0.4rem;
- line-height: 0.4rem;
- color: #b4b4b4;
- }
- .playCode{
- color: rgb(0, 0, 0);
- display: flex;
- }
- .playCode .home,.playCode .guest{
- height: 0.4rem;
- line-height: 0.4rem;
- width: 50%;
- background: #fff;
- padding: 0 0 0 0.1rem;
- }
- .playCode .home{
- width: calc(50% - 1px);
- padding-right: 0.1rem;
- border-right: 1px solid #e4e4e4;
- }
- .oddsBox{
- margin-right: 0.1rem;
- }
- .odds{
- display: inline-block;
- height: 0.3rem;
- border: 1px solid #e4e4e4;
- width: 0.5rem;
- background-color: #fff;
- text-align: center;
- line-height: 0.23rem;
- margin: 0.07rem auto 0.04rem;
- padding: 0.04rem;
- }
- .odds:hover{
- background: orange;
- color: #fff;
- border-color: orange;
- }
- .guest{
- padding-right: 0.1rem;
- }
- .home:hover,.guest:hover{
- background: #fff5e9;
- }
- .draw{
- width: 20%;
- background: #fff;
- padding: 0 0.1rem;
- border-right: 1px solid #e4e4e4;
- }
- .condation{
- display: inline-block;
- color: #bd4700;
- margin:0 0.1rem;
- }
- </style>
|