12345678910111213141516171819202122232425262728293031323334353637 |
- /* 招生简章 */
- .recruit {
- .navbar-right {
- display: flex;
- align-items: center;
- color: rgba($color: #fff, $alpha: 0.8);
- font-size: 26rpx;
- margin-right: 24rpx;
- text {
- margin-left: 10rpx;
- }
- }
-
- &-content {
- padding: 0 30rpx;
-
- &-name {
- text-align: center;
- font-size: 42rpx;
- color: #3D5D4C;
- font-weight: 600;
- margin: 60rpx auto 24rpx;
- }
- &-box {
- color: #545454;
- font-size: 24rpx;
- line-height: 50rpx;
- }
- }
- }
- .progress {
- text-align: center;
- display: flex;
- align-items: center;
- justify-content: center;
- height: 100%;
- }
|