You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

137 lines
2.8 KiB

  1. ::-webkit-scrollbar{
  2. width:0px!important;
  3. height: 0px!important;
  4. }
  5. .group-list {
  6. margin-top: 25px;
  7. }
  8. .group-list ul{
  9. margin: 0;
  10. padding: 0;
  11. }
  12. .group-list li{
  13. list-style-type: none;
  14. padding: 5px 0 5px 20px;
  15. margin: 5px 0;
  16. cursor: pointer;
  17. }
  18. .group-list li:hover{
  19. background-color: #CECECE;
  20. }
  21. .click-bg{
  22. background-color: #CECECE;
  23. }
  24. .bootstrap-table .fixed-table-container.fixed-height:not(.has-footer){
  25. border: 0px!important;
  26. }
  27. .bootstrap-table .fixed-table-container.fixed-height .fixed-table-border{
  28. border: 0px!important;
  29. }
  30. .btn-style1{
  31. padding: 6px 20px;
  32. border-radius: 5px 5px 0 0;
  33. background-color: #EAF9FD;
  34. color: #000000;
  35. }
  36. .btn-style2{
  37. padding: 6px 20px;
  38. border-radius: 0;
  39. color: #185EFF;
  40. border-color: #185EFF;
  41. }
  42. .btn-style3{
  43. color: #417EFA;
  44. padding: 0 10px;
  45. }
  46. .btn-style1:hover,.btn-style2:hover{
  47. background-color: #185EFF;
  48. color: #ffffff;
  49. }
  50. .address-btn layui-layer-title{
  51. background-color: #185EFF;
  52. text-align: center;
  53. font-size: 16px;
  54. }
  55. .address-btn layui-layer-btn{
  56. text-align: center;
  57. }
  58. .addgroup_frame{
  59. height: 32px;
  60. width: 360px;
  61. }
  62. .layui-layer-btn{
  63. text-align: center!important;
  64. }
  65. .address-from-left{
  66. height: 32px ;
  67. width: 25%;
  68. display: inline-block;
  69. text-align: right;
  70. }
  71. .address-from-right{
  72. height: 32px ;
  73. width: 55%;
  74. display: inline-block;
  75. text-align: right;
  76. margin-left: 14px;
  77. }
  78. /*.trapezoid {*/
  79. /* width: 0;*/
  80. /* height: 0;*/
  81. /* border-bottom: 100px solid red; !* 梯形的底边 *!*/
  82. /* border-left: 50px solid transparent; !* 左侧斜边 *!*/
  83. /* border-right: 50px solid transparent; !* 右侧斜边 *!*/
  84. /* transform: rotate(-90deg); !* 反方向旋转 90 度 *!*/
  85. /* transform-origin: top left; !* 设置旋转中心点 *!*/
  86. /*}*/
  87. .container {
  88. position: relative;
  89. width: 300px; /* Adjust the width as needed */
  90. height: 400px; /* Adjust the height as needed */
  91. background-color: white;
  92. overflow: hidden;
  93. }
  94. .container::before {
  95. content: '';
  96. position: absolute;
  97. width: 2px; /* Thickness of the vertical line */
  98. height: 100%;
  99. background-color: black;
  100. left: 50%; /* Center the line */
  101. transform: translateX(-50%);
  102. }
  103. .container::after {
  104. content: '';
  105. position: absolute;
  106. width: 60px; /* Width of the irregular shape */
  107. height: 60px; /* Height of the irregular shape */
  108. background-color: black;
  109. border-radius: 50%; /* Make it circular */
  110. top: 100px; /* Position it below the vertical line */
  111. left: calc(50% - 30px); /* Center it horizontally */
  112. transform: translateX(-50%);
  113. }
  114. .vertical-line {
  115. width: 90px;
  116. height: 10px;
  117. background-color: #CECECE;
  118. border-radius: 50% / 100% 100% 0 0;
  119. transform: rotate(-90deg);
  120. margin-top: 270px;
  121. margin-left: -50px;
  122. }