| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <template>
- <div>
- <yd-accordion>
- <yd-accordion-item title="零失球">
- <div class="notOnly">
- <div class="flex" style="padding : 0 0.32rem;">
- <div class="list flex arow">
- <div>洪都拉斯</div>
- <div class="item">
- <!-- <span class="condaiton">0.5</span> -->
- <span class="num">2.30</span>
- </div>
- </div>
- <div class="list flex arow">
- <div>萨尔瓦多</div>
- <div class="item">
- <!-- <span class="condaiton">0.5</span> -->
- <span class="num">3.05</span>
- </div>
- </div>
- </div>
- </div>
- </yd-accordion-item>
- </yd-accordion>
- </div>
- </template>
- <script>
- export default {
-
- }
- </script>
- <style scoped>
- div /deep/ .yd-accordion-head-arrow:after {
- border: none;
- width: 0.5rem;
- height: 0.5rem;
- background: url(../../assets/st-imges/xiangxia.png) no-repeat;
- background-size: 100% 100%;
- }
- div /deep/ .yd-accordion-head,
- div /deep/ .yd-accordion-head-content,
- div /deep/ .yd-accordion-title {
- font-size: 0.28rem;
- color: #fefefe;
- background: #a0a0a0;
- }
- div /deep/ .yd-accordion-head {
- padding: 0 0.32rem;
- }
- .head{
- display: flex;
- background: #bcbcbc;
- color: #333;
- font-size: 0.26rem;
- padding: 0 0.32rem;
- }
- .head span{
- /* width: 33%; */
- text-align: center;
- height: 0.8rem;
- line-height: 0.8rem;
- }
- .flex{
- display: flex;
- align-items: center;
- }
- .arow{
- justify-content: space-between;
- }
- .only .list,.notOnly .list{
- width: 33%;
- padding: 0 0.1rem;
- height: 0.88rem;
- font-size: 0.24rem;
- border-right: 1px solid #e4e4e4;
- }
- .notOnly .list{
- width: 50%;
- }
- .list:nth-last-child(1){
- border-right: none;
- }
- .list .condaiton{
- margin-right: 0.1rem;
- color: #f76649;
- }
- .list .num{
- display: inline-block;
- width: 1.07rem;
- height: 0.76rem;
- line-height: 0.5rem;
- font-size: 0.24rem;
- padding: 0.1rem;
- border: 1px solid #cecece;
- border-radius: 0.1rem;
- text-align: center;
- }
- </style>
|