123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- /* 信息盒子 */
- .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;
- }
- /* 账号信息 */
- .account-information {
- width: 100%;
- font-size: 20rpx;
- font-family: HelveticaNeue;
- color: rgba(0, 0, 0, 0.65);
- padding: 0 20rpx;
- box-sizing: border-box;
- }
- .account-information-row:first-child {
- margin-top: 18rpx;
- }
- .account-information-row {
- display: flex;
- justify-content: space-between;
- width: 100%;
- height: 44rpx;
- font-size: 20rpx;
- font-family: HelveticaNeue;
- color: rgba(0, 0, 0, 0.65);
- line-height: 44rpx;
- margin-top: 10rpx;
- }
- .account-information-row>view {
- display: flex;
- }
- .account-information-row .chained-address {
- max-width: 400rpx;
- padding: 0 8rpx;
- }
- .chained-address-copy {
- color: #4DC2D4;
- }
- .account-information-row:first-child .chained-address {
- width: 350rpx;
- }
- /* 去申请 */
- .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: 30rpx auto 10rpx;
- font-size: 24rpx;
- color: rgba(0, 0, 0, 0.85);
- }
|