index.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /* prescription/dialogue/index.wxss */
  2. page {
  3. background-color: #f1f1f1;
  4. }
  5. .inputRoom {
  6. /* height: 80rpx;
  7. align-items: center;
  8. padding: 20rpx 30rpx 20rpx 0;
  9. border-top: 1px solid #cdcdcd;
  10. background-color: #f1f1f1;
  11. position: fixed;
  12. bottom: 0;
  13. display: flex;
  14. align-items: center;
  15. z-index: 20; */
  16. background: #fff;
  17. height: 100rpx;
  18. position: fixed;
  19. left: 0;
  20. right: 0;
  21. bottom: 0;
  22. z-index: 80;
  23. display: flex;
  24. display: -webkit-flex;
  25. align-items: center;
  26. }
  27. .ipt {
  28. width: 76vw;
  29. height: 9.33vw;
  30. background-color: #fff;
  31. border-radius: 40rpx;
  32. margin-left: 2vw;
  33. padding: 0 3vw;
  34. font-size: 28rpx;
  35. color: #444;
  36. }
  37. .confirm{
  38. background: #FE0419;
  39. width: 50%;
  40. height: 100%;
  41. text-align: center;
  42. line-height: 100rpx;
  43. color: #fff;
  44. font-size: 32rpx;
  45. }
  46. .no{
  47. background: #BDC2C9;
  48. width: 50%;
  49. height: 100%;
  50. text-align: center;
  51. line-height: 100rpx;
  52. color: #fff;
  53. font-size: 32rpx;
  54. }
  55. .suc{position: fixed;left: 50%;top: 50%;transform: translate(-50%,-50%);background: #fff;width: 536rpx;border-radius: 20rpx;z-index: 100;text-align: center;}
  56. .title{padding: 30rpx 0;}
  57. .btn{border-top: 1rpx solid #E5E5E5;margin-top: 30rpx;}
  58. .cancel{width: 50%;border-right: 1rpx solid #E5E5E5;height: 100%;padding: 30rpx 0;}
  59. .queren{width: 50%;height: 100%;padding: 30rpx 0; color: #FF3C19;}
  60. .tips{background: #F9F8D9; padding: 20rpx; color: #F97326;font-size: 26rpx;}
  61. .authorization{color: #75B1FC; justify-content: space-between;}
  62. .underline{text-decoration:underline}
  63. .txt{line-height: 36rpx; }
  64. .top{box-sizing: border-box;align-items: center;padding: 20rpx; margin: 10rpx 0 10rpx 0;}
  65. .topcon{position: relative;z-index: 2;display: flex;display: -webkit-flex;}
  66. .logo{display: block;width: 80rpx;height: 80rpx;z-index: 2;}
  67. .doctor,.subject{margin-right: 20rpx;}
  68. .leftMsg {
  69. font-size: 28rpx;
  70. color: #444;
  71. line-height: 7vw;
  72. padding: 2vw 2.5vw;
  73. background-color: #fff;
  74. margin-left: -1.6vw;
  75. border-radius: 10rpx;
  76. z-index: 10;
  77. position: relative;
  78. margin-left:20px;
  79. }
  80. .leftMsg:before {
  81. content: "";
  82. display: block;
  83. position: absolute;
  84. width:0;
  85. height: 0;
  86. border: 10px solid transparent; /*边框宽度为10px 颜色透明(也就是隐藏) */
  87. border-right-color: #fff; /*只显示右边的边框 显示效果就是向左的箭头*/
  88. left: -20px; /*在DIV左边显示右边的边框 要向左移动2倍边框宽度 即20px*/
  89. top: 9px; /*高度为25+5+5=35 排除箭头高度20 剩余15 显示在距顶部9px的位置 */
  90. }
  91. .rightMsg {
  92. position: relative;
  93. /* margin-right: 0.5vw; */
  94. font-size: 28rpx;
  95. color: #444;
  96. line-height: 7vw;
  97. padding: 2vw 2.5vw;
  98. background-color: #96EB6A;
  99. margin-right: 26rpx;
  100. border-radius: 10rpx;
  101. z-index: 10;
  102. }
  103. .rightMsg:before {
  104. content: "";
  105. display: block;
  106. position: absolute;
  107. width:0;
  108. height: 0;
  109. border: 10px solid transparent; /*边框宽度为10px 颜色透明(也就是隐藏) */
  110. border-left-color: #96EB6A; /*只显示右边的边框 显示效果就是向左的箭头*/
  111. right: -20px; /*在DIV左边显示右边的边框 要向左移动2倍边框宽度 即20px*/
  112. top: 9px; /*高度为25+5+5=35 排除箭头高度20 剩余15 显示在距顶部9px的位置 */
  113. }