otherTreatment.css 2.75 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
html,
body {
	height: 100%;
	width: 100%;
	background-color: #fff;
}
* {
	margin: 0px;
	padding: 0px;
}
#content {
	width: 100%;
	height: 100%;
}
#content img {
	width: 100%;
	height: 100%;
}
.strip-line {
	background-color: #f6f6fc;
	height: .2rem;
	width: 100%;
}
.content_body {
	padding: 0 .48rem;
}
.content_body input {
	height: .76rem;
	background-color: #f9f9f9;
}
input::-webkit-input-placeholder {
	/* placeholder颜色  */
	color: #aab2bd;
	/* placeholder字体大小  */
	font-size: .28rem;
	/* placeholder位置  */
	text-align: left;
}
input {
	outline: none;
	border: 0px !important;
}
.input_item{
	position: relative;
	margin:0!important;
}
.input_item::after{
	position: absolute;
	right:.2rem;
	top:.3rem;
	content: "";
	display: inline-block;
	width: .2rem;
	height: .2rem;
	border-top:.04rem solid #ccc;
	border-right:.04rem solid #ccc;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg); /* Safari 和 Chrome */
}
.no_after::after{
  content: "";
	display: none;
}
.content_body_title {
	width: 100%;
	padding-top: .24rem;
	font-size: .36rem;
	font-family: PingFangSC-Semibold, PingFang SC;
	font-weight: 600;
	color: rgba(53, 53, 76, 1);
}
.content_select{
	height: 100%;
	margin-top:-0.8rem;
}
#text_red {
	color: rgba(244, 94, 25, 1);
	padding-right: .1rem;
}
.content_body_weight,.content_body_height{
  padding: .24rem 0;
  font-size:.32rem;
  font-family:PingFangSC-Regular,PingFang SC;
  font-weight:400;
  color: #262626;
}

.tabbox {
  width: 100%;
  height: 100%;
}
.tabbox ul {
  list-style: none;
  /* display: table; */
	height: 1rem;
	margin-top:-0.2rem;
  border-bottom: .01rem solid #f2f2f2;
}
.tabbox ul li {
	float: left;
	width: 1.36rem;
	line-height: .56rem;
  margin-right: .32rem;
  height: .56rem;
	cursor: pointer;
	color: #a4a4a4;
	border-radius: 15px;
	border: 1px solid #dddddd;
  text-align: center;
  font-size: .28rem;
}
.tabbox ul li.active {
	background-color: #eefbf7;
	color: #2fd0a0;
  font-weight: bold;
  border: 1px solid #2fd0a0;
}
.tabbox .content > div {
	display: none;
}
.tabbox .content > div.active {
	display: block;
}
.content_footer{
  position: fixed;
  bottom:0;
	height: 1.2rem;
	width: 100%;
	padding:0 .32rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
	background-color: #fff;
	z-index: 10;
}
.content_body{
	margin-bottom:1.2rem; 
}
.content_footer button{
	height: .88rem;
	width: 3.2rem;
	font-size: .36rem;
	border: 0;
	outline: none;
	background-color: #2CBCA0;
	color:#fff;
}
148 149
textarea[maxlength="300"]{
	border:0;
150 151
  background:rgba(249,249,249,1);
  border-radius:2px;
152 153
	padding: .2rem;
	font-size: .28rem;
154 155 156 157 158 159 160 161 162
}
textarea::-webkit-input-placeholder {
  /* placeholder颜色  */
  color: #aab2bd;
  /* placeholder字体大小  */
  font-size: .28rem;
  /* placeholder位置  */
  text-align: left;
}