1234567891011121314151617181920212223242526272829 |
- /* pages/mysuggest/mysuggest.wxss */
- .content{
- background-color:#F9F9F9;
- }
- .mysuggest_area{
- display: block;
- padding: 30rpx 38rpx;
- height: 220rpx;
- width:674rpx;
- line-height: 36rpx;
- color: black;
- font-size: 24rpx;
- text-align: left;
- font-family: PingFangSC-Regular,NotoSansHans-DemiLight;
- background-color: white;
- border:1rpx solid rgba(235, 235, 235, 1);
- }
- .mysuggest_bt{
- margin:40rpx auto 0rpx;
- width: 620rpx;
- height: 68rpx;
- line-height: 68rpx;
- border-radius: 6rpx;
- background: linear-gradient(270deg,#FFD800,#FFE600);
- color: rgba(56, 55, 53, 1);
- font-size: 26rpx;
- text-align: center;
- font-family: PingFangSC-Medium,NotoSansHans-Medium;
- }
|