select.scss 1.7 KB

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