12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /* 信息盒子 */
- .msgBox {
- width: 702rpx;
- background: #FFFFFF;
- border-radius: 20rpx;
- margin: 0 auto;
- padding: 10rpx;
- padding-bottom: 20rpx;
- box-sizing: border-box;
- margin-bottom: 30rpx;
- margin-top: 20rpx;
- }
- .msgBox-title-and-but {
- height: 68rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 10rpx;
- border-bottom: 2rpx solid rgba(151, 151, 151, .1);
- box-sizing: border-box;
- }
- /* 标题 */
- .msgBox-title {
- height: 40rpx;
- line-height: 40rpx;
- font-size: 28rpx;
- font-weight: 550;
- color: rgba(0, 0, 0, 0.85);
- }
- .msgBox-title>text {
- font-size: 26rpx;
- }
- .dataReturn {
- font-size: 20rpx;
- color: #4CBECF;
- }
- /* 一键开播按钮 */
- .custom-class-msgBox-but {
- width: 116rpx !important;
- height: 44rpx !important;
- background: #4DC2D4 !important;
- border-radius: 22rpx !important;
- font-size: 20rpx !important;
- font-weight: 500;
- color: #FFFFFF !important;
- padding-left: 0 !important;
- padding-right: 0 !important;
- }
- /* 去申请 */
- .go-to-apply-for {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 330rpx;
- height: 74rpx;
- border-radius: 10rpx;
- border: 2rpx solid rgba(0, 0, 0, 0.85);
- box-sizing: border-box;
- margin: 56rpx auto 50rpx;
- font-size: 24rpx;
- color: rgba(0, 0, 0, 0.85);
- }
|