123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- module.exports = {
- container: {
- width: '100%',
- height: '100%',
- borderRadius: 12,
- marginTop:30
- },
- header: {
- width: '100%',
- height: '10%',
- flexDirection: 'column',
- alignItems: 'center',
- backgroundColor: '#ffffff00',
- borderBottomWidth: 0.5,
- borderColor: 'rgba(0, 0, 0, 0)',
- },
- title: {
- width: '10%',
- height: '100%',
- fontSize: 35,
- lineHeight: 80,
- textAlign: 'center',
- fontWeight: 'bold',
- borderBottomWidth: 6,
- borderColor: '#ffffff',
- },
- rankList: {
- width: '100%',
- height: '90%',
- backgroundColor: '#ffffff00',
- },
- list: {
- width: '100%',
- height: '88%',
- backgroundColor: '#ffffff00',
- marginTop: 30,
- },
- listTips: {
- width: '100%',
- height: '12%',
- lineHeight: 90,
- textAlign: 'center',
- fontSize: 25,
- color: 'rgba(0,0,0,0.5)',
- backgroundColor: '#ffffff00',
- // borderRadius: 10,
- // borderWidth: 1,
- // borderColor: 'rgba(0, 0, 0, 1)',
- },
- listItem: {
- backgroundColor: '#ffffff00',
- width: '100%',
- height: '18%',
- flexDirection: 'row',
- alignItems: 'center',
- justifyContent: 'space-between',
- },
- listItemOld: {
- backgroundColor: '#ffffff00',
- },
- listItemUserData: {
- width: '70%',
- height: '100%',
- flexDirection: 'row',
- alignItems: 'center',
- justifyContent: 'flex-start',
- marginLeft:10,
- },
- listItemScore: {
- width: '20%',
- height: 100,
- fontSize: 33,
- fontWeight: 'bold',
- paddingRight: 200,
- lineHeight: 100,
- textAlign: 'center',
- },
- listItemNum: {
- width: 100,
- height: 80,
- fontSize: 30,
- fontWeight: 'bold',
- color: '#452E27',
- lineHeight: 100,
- textAlign: 'center',
- },
- listHeadImg: {
- borderRadius: 6,
- width: 70,
- height: 70,
- marginLeft: 30,
- },
- listItemName: {
- width: 210,
- height: 100,
- fontSize: 30,
- lineHeight: 100,
- marginLeft: 30,
- },
- rankTitle:{
- width:79,
- height:64,
- margineRight:50,
- },
- rankTitle1:{
- width:45,
- height:48,
- margineRight:74,
- }
- };
|