123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
- /* pages/penInfo/penInfo.wxss */
- .penInfo {
- width: 100vw;
- background: #F2F2F2;
- box-sizing: border-box;
- }
- .title {
- width: 100vw;
- height: 5vh;
- font-size: 36rpx;
- color: #1F2430;
- line-height: 96rpx;
- text-align: center;
- background-color: #fff;
- }
- .penInfoScroll {
- height: 95vh;
- width: 100vw;
- box-sizing: border-box;
- padding: 20rpx 20rpx 0;
- background-color: #f2f2f2;
- border-radius: 8rpx;
- }
- .mb20 {
- margin-bottom: 20rpx;
- border-radius: 8rpx;
- overflow: hidden;
- }
- .changePenName {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- box-sizing: border-box;
- }
- .penNameTitle {
- font-size: 32rpx;
- color: #151515;
- font-weight: bold;
- font-family: PingFangSC-Medium, PingFang SC;
- margin: 40rpx 0 32rpx;
- }
- .buttons {
- display: flex;
- width: 100%;
- height: 88rpx;
- border-top: 2rpx solid #E6E6E6;
- justify-content: space-between;
- }
- .penNameInput {
- height: 80rpx;
- width: 664rpx;
- border: 2rpx solid #EC6938;
- border-radius: 16rpx;
- }
- .w50 {
- width: 375rpx !important;
- border: none !important;
- }
- .leftButton {
- color: #8492a6 !important;
- font-size: 32rpx !important;
- border-right: 2rpx solid #E6E6E6 !important;
- }
- .rightButton {
- color: #EC6938 !important;
- font-size: 32rpx !important;
- }
- .inputArea {
- margin-bottom: 40rpx;
- }
- .penSensor {
- display: flex;
- flex-direction: column;
- align-items: center;
- box-sizing: border-box;
- padding: 0 72rpx;
- }
- .sensorTitle {
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 32rpx;
- margin: 58rpx 0;
- width: 100%;
- }
- .sensorTitle>text {
- color: #000000;
- font-weight: bold;
- }
- .sensorTitle>view {
- color: #8492A6;
- }
- .secondSensorTitle {
- color: #313B46;
- font-size: 32rpx;
- font-weight: 500;
- margin-bottom: 22rpx;
- width: 616rpx;
- }
- .sensorChosen {
- display: flex;
- justify-content: space-between;
- margin-bottom: 46rpx;
- width: 616rpx;
- }
- .secondTitle {
- width: 616rpx;
- color: #313B46;
- font-size: 32rpx;
- margin-bottom: 22rpx;
- font-weight: 500;
- }
- .sensorItem {
- background-color: #FDF1ED;
- color: #000000;
- border-radius: 13px;
- width: 90rpx;
- height: 90rpx;
- text-align: center;
- line-height: 90rpx;
- font-size: 28rpx;
- }
- .sensorClick {
- background-color: #EF7A4E;
- color: #fff;
- border-radius: 13px;
- width: 90rpx;
- height: 90rpx;
- font-size: 28rpx;
- text-align: center;
- line-height: 90rpx;
- }
- .sensorButton {
- height: 90rpx;
- width: 648rpx;
- border-radius: 45rpx;
- color: #fff;
- background: #EF7A4E;
- font-size: 32rpx;
- font-weight: 500;
- line-height: 90rpx;
- text-align: center;
- margin-bottom: 30rpx;
- }
- .timeTitle {
- color: #151515;
- font-weight: bold;
- font-size: 32rpx;
- text-align: center;
- margin: 40rpx 0;
- width: 750rpx;
- }
- .changeAutoOff {
- display: flex;
- flex-direction: column;
- align-items: center;
- box-sizing: border-box;
- }
- .autoTitle {
- font-size: 32rpx;
- color: #151515;
- font-weight: bold;
- margin-top: 52rpx;
- }
- .autoSecondTitle {
- color: #D3DBE8;
- font-size: 24rpx;
- margin: 22rpx 0 38rpx;
- }
- .autoInput {
- width: 664rpx;
- height: 80rpx;
- border-radius: 8px;
- border: 2rpx solid #EC6938;
- margin: 0 0 20rpx;
- font-size: 30rpx;
- color: #151515;
- display: flex;
- align-items: center;
- }
- .autoInput>input {
- border: none;
- flex: 1;
- }
- .autoInput>text {
- margin-right: 44rpx;
- }
- .mainBox {
- display: flex;
- flex-direction: column;
- justify-content: center;
- box-sizing: border-box;
- }
- .inputArea {
- font-size: 32rpx;
- display: flex;
- width: 80vw;
- border-bottom: 1px solid #ccc;
- align-items: center;
- }
|