| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- /* teacherDet.css */
- .zj-bg{
- width: 100%;
- height: 562rpx;
- }
- .content-box{
- box-sizing: border-box;
- margin:-60rpx auto 0;
- padding: 60rpx 38rpx;
- width: 690rpx;
- background: linear-gradient(180deg, #FFFFFF 50%, rgba(255,255,255,0) 100%);
- border-radius: 15rpx 15rpx 15rpx 15rpx;
- opacity: 1;
- position: relative;
- z-index: 1;
- }
- .zj-name{
- line-height: 71rpx;
- font-size: 48rpx;
- font-family: Source Han Sans CN-Bold, Source Han Sans CN;
- font-weight: bold;
- color: #333333;
- justify-content: space-between;
- flex-wrap: nowrap;
- }
- .zj-label{
- font-size: 32rpx;
- font-family: Source Han Sans CN-Regular, Source Han Sans CN;
- font-weight: 400;
- color: #999999;
- line-height: 47rpx;
- margin-top: 8rpx;
- }
- .title{
- font-size: 32rpx;
- font-family: Source Han Sans CN-Bold, Source Han Sans CN;
- font-weight: bold;
- color: #333333;
- line-height: 47rpx;
- margin-top: 45rpx;
- margin-bottom: 23rpx;
- position: relative;
- display: inline-block;
- z-index: 1;
- }
- .title::after{
- content: '';
- position: absolute;
- bottom: 5rpx;
- left: 0;
- width: 100%;
- height: 11rpx;
- background: linear-gradient(90deg, #009AFF 0%, rgba(0,154,255,.1) 100%);
- border-radius: 50rpx 50rpx 50rpx 50rpx;
- opacity: 1;
- z-index: -1;
- }
- .zj-brief{
- font-size: 28rpx;
- font-family: SourceHanSansCN-Regular-, SourceHanSansCN-Regular;
- font-weight: normal;
- color: #333333;
- line-height: 42rpx;
- }
- .zj-brief ._root{
- font-size: 28rpx !important;
- padding: 0;
- }
- .qr {
- width: 40rpx;
- height: 40rpx;
- opacity: 1;
- margin-left: 20rpx;
- }
- /* 客服微信 */
- .ceng{position: fixed;top: 0;left: 0;right: 0;bottom: 0;background: rgba(0,0,0,.5);z-index: 99;}
- .cancel{position: absolute;top: 40rpx;right: 34rpx;width: 32rpx;height: 32rpx;}
- .popup{position: fixed;left: 0;right: 0;bottom: -100%;padding: 50rpx 0 80rpx;background: #fff;border-radius: 32rpx 32rpx 0 0;z-index: 100;transition: bottom .2s ease-in;}
- .code{width: 260rpx;height: 260rpx;margin: 30rpx auto 40rpx;}
- .tip{font-size: 28rpx;color: #333;text-align: center;padding: 0 0 30rpx;}
- .pop-btn{justify-content: center;padding: 0 50rpx;}
- .pop-btn view{width: 260rpx;height: 60rpx;border-radius: 30rpx;border: 1rpx solid var(--main);font-size: 30rpx;color: var(--main);text-align: center;line-height: 60rpx;margin: 0 30rpx;}
- .close{position: absolute;bottom: -120rpx;left: 50%;transform: translateX(-50%);width: 80rpx;height: 80rpx;}
|