service.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. font-family: Helvetica;
  5. }
  6. *{
  7. -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
  8. -moz-tap-highlight-color:rgba(0, 0, 0, 0);
  9. -ms-tap-highlight-color:rgba(0, 0, 0, 0);
  10. -o-tap-highlight-color:rgba(0, 0, 0, 0);
  11. tap-highlight-color:rgba(0, 0, 0, 0);
  12. }
  13. body {
  14. background-color: #110D24;
  15. font-size: 14px;
  16. font-family: "微软雅黑";
  17. width: 100%;
  18. }
  19. .service_list{
  20. background: #15112C;
  21. }
  22. .service_list li{
  23. height: 80px;
  24. line-height: 80px;
  25. border-bottom: 1px solid #1D1934;
  26. color: #939394;
  27. width: 90%;
  28. margin:0 auto;
  29. list-style: none;
  30. background: url(../images/right.png) no-repeat center right 3% #15112C;
  31. position: relative;
  32. }
  33. .service_list li .service_list_left{
  34. width: 70%;
  35. position: absolute;
  36. left: 0;
  37. top: 0;
  38. /*padding-left: 5%;*/
  39. }
  40. .service_list li .service_list_left p{
  41. width: 100%;
  42. height: 40px;
  43. line-height: 40px;
  44. }
  45. .service_list li .service_list_left .service_list_tips{
  46. line-height: 55px;
  47. font-size: 1rem;
  48. }
  49. .service_list li .service_list_left .service_list_cons{
  50. color: #FFF;
  51. }
  52. .service_list li .service_list_right{
  53. position: absolute;
  54. padding-right: 5%;
  55. right: 0;
  56. top: 0;
  57. width: 25%;
  58. text-align: right;
  59. }
  60. /*15112C*/
  61. a{
  62. text-decoration: none;
  63. }
  64. .fl{
  65. float: left;
  66. }
  67. .fr{
  68. float: right;
  69. }
  70. .clearboth{
  71. clear: both;
  72. }
  73. .shadow{
  74. display: none;
  75. width: 100%;
  76. height: 100%;
  77. position: absolute;
  78. background: #000;
  79. z-index: 2;
  80. opacity:0.4;
  81. filter:alpha(opacity=40); /* 针对 IE8 以及更早的版本 */
  82. }
  83. .confirmArea{
  84. display: none;
  85. height: 15%;
  86. width: 80%;
  87. background: #CCCDD1;
  88. position: absolute;
  89. z-index: 3;
  90. left: 10%;
  91. top: 35%;
  92. border-radius: 10px;
  93. }
  94. .confirmMobile{
  95. height: 50%;
  96. border-bottom: 1px solid #626573;
  97. text-align: center;
  98. vertical-align: middle;
  99. font-size: 1.2rem;
  100. }
  101. .confirmBtnArea{
  102. position: relative;
  103. width: 100%;
  104. }
  105. .confirmBtnArea p{
  106. width: 50%;
  107. position: absolute;
  108. text-align: center;
  109. color: #397CF4;
  110. }
  111. .confirm_cancel{
  112. border-right: 1px solid #626573;
  113. left: 0;
  114. }
  115. .confirm_confirm{
  116. right: 0;
  117. }