myInfo.wxss 1.1 KB
/* pages/my/myInfo/myInfo.wxss */

.box {
  padding: 40rpx 30rpx;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.head_box {
  font-size: 30rpx;
  font-weight: bold;
  color: #333;
  text-align: center;
}

.box image {
  width: 160rpx;
  height: 160rpx;
  border-radius: 50%;
  box-shadow: 0 10rpx 30rpx 0 #a0a5ac;
  margin-bottom: 30rpx;
}

.content_box {
  width: 100%;
  padding: 0 100rpx;
  box-sizing: border-box;
  margin-top: 120rpx;
}

.item_list {
  padding: 10rpx 0;
  border-bottom: 1rpx solid #e8e8e8;
  font-size: 26rpx;
  margin-bottom: 30rpx;
}

.list_title {
  font-size: 30rpx;
  font-weight: bold;
  color: #333;
}

.pl_style {
  color: #e8e8e8;
}



.submit_btn {
  width: 92%;
  height: 80rpx;
  background: linear-gradient(27deg, rgba(255, 128, 128, 1), rgba(255, 140, 140, 1));
  box-shadow: 4rpx 19rpx 92rpx 0rpx rgba(247, 94, 94, 0.39);
  border-radius: 10rpx;
  font-size: 32rpx;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60rpx;
  position: fixed;
  left: 50%;
  bottom: 45rpx;
  transform: translate(-50%);
}