select.scss 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. $h:88px;
  2. .select {
  3. height : 44px;
  4. border-bottom: 1px solid #EFEFEF;
  5. line-height: 44px;
  6. background: #fff;
  7. .region {
  8. height : 100%;
  9. width : 49%;
  10. display : inline-block;
  11. text-align: center;
  12. img {
  13. width : 14px*0.8;
  14. height : 8px*0.8;
  15. margin-left: 3px;
  16. }
  17. }
  18. .bg {
  19. position : fixed;
  20. height : 100%;
  21. width : 100%;
  22. background: rgba(0, 0, 0, 0.6);
  23. left : 0;
  24. z-index : 10;
  25. top : $h;
  26. }
  27. #region {
  28. position : fixed;
  29. height : 60%;
  30. line-height: 44px;
  31. width : 100%;
  32. left : 0;
  33. top : $h;
  34. z-index : 50;
  35. overflow : hidden;
  36. ul {
  37. height : 100%;
  38. padding : 15px 0;
  39. overflow-y: auto;
  40. li {
  41. width : 100%;
  42. text-align : center;
  43. height : 100%*0.145;
  44. line-height: 380%;
  45. }
  46. }
  47. .left {
  48. float : left;
  49. width : 35%;
  50. background: rgba(246, 246, 246, 1);
  51. box-shadow: 0px -1px 0px 0px rgba(239, 239, 239, 1);
  52. }
  53. .right {
  54. float : right;
  55. width : 65%;
  56. background-color: #fff;
  57. }
  58. }
  59. #category {
  60. position: fixed;
  61. top : $h;
  62. left : 0;
  63. height : 250px;
  64. width: 100%;
  65. background-color: #fff;
  66. z-index : 50;
  67. li {
  68. height : 50px;
  69. line-height: 50px;
  70. text-align : center;
  71. }
  72. }
  73. }