| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /* pages/discern_particulars/discern_particulars.wxss */
- .discern_particulars-content {
- position: relative;
- }
- /* 背景图 */
- .discern_particulars-carousel {
- width: 100%;
- }
- /* 数据 */
- .discern_particulars-box {
- width: 100%;
- height: 800rpx;
- position: absolute;
- bottom: 0;
- left: 0;
- background: #fff;
- border-radius: 25rpx 25rpx 0 0;
- }
- /* 名称 */
- .discern_particulars-nameBox {
- /* border: 1px solid #000; */
- display: flex;
- justify-content: left;
- margin: 20rpx 0 0 0;
- }
- /* */
- .discern_particulars-nameLine {
- width: 13rpx;
- height: 40rpx;
- background: #1dce8a;
- border-radius: 20rpx;
- margin: 10rpx 0 0 20rpx;
- }
- /* 名称 */
- .discern_particulars-name {
- text-align: left;
- font-size: 22px;
- font-weight: 550;
- margin: 0 0 0 20rpx;
- }
- /* 科目 */
- .discern_particulars-nameA {
- text-align: left;
- font-size: 12px;
- color: rgb(119, 118, 118);
- margin: 23rpx 0 0 20rpx;
- }
- /* 内容 */
- .discern_particulars-boxContent {
- /* border: 1px solid #000; */
- margin: 30rpx 0 0 35rpx;
- font-size: 12px;
- text-indent: 2em;
- width: 90%;
- line-height: 50rpx;
- }
|