123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- /* 我的面试 */
- .interview {
- min-height: calc(100vh - 44px);
- background-color: #F2F2F2;
- font-family: 'PingFangSC-Regular, PingFang SC';
-
- &-list {
- padding: 26rpx 30rpx;
-
- &-item {
- border-radius: 10rpx;
- background-color: #fff;
- padding: 30rpx 32rpx;
- margin-bottom: 20rpx;
-
- &-title {
- font-size: 32rpx;
- color: #000;
- display: flex;
- align-items: center;
- margin-bottom: 20rpx;
-
- image {
- width: 24rpx;
- height: 24rpx;
- margin-left: 10rpx;
- }
- }
-
- &-date {
- color: #028DFE;
- font-size: 50rpx;
- font-weight: 600;
- line-height: 70rpx;
- }
-
- &-way {
- font-size: 22rpx;
- color: #9B9B9B;
- margin-bottom: 22rpx;
- }
-
- &-position {
- display: flex;
- justify-content: space-between;
-
- .left {
- display: flex;
- align-items: center;
-
- image {
- width: 98rpx;
- height: 98rpx;
- border-radius: 6rpx;
- margin-right: 22rpx;
- }
-
- .info {
- color: #9B9B9B;
- font-size: 24rpx;
- line-height: 40rpx;
- view {
- &:first-child {
- color: #000;
- font-size: 32rpx;
- }
- }
- }
- }
-
- .right {
- view {
- font-size: 24rpx;
- color: #9B9B9B;
- text-align: right;
- &:first-child {
- color: #EF651F;
- margin-bottom: 12rpx;
- }
- }
- }
- }
-
- &-button {
- margin-top: 52rpx;
- .btn {
- width: 100%;
- height: 80rpx;
- line-height: 80rpx;
- text-align: center;
- font-size: 30rpx;
- color: rgba(255, 255, 255, 0.8);
- }
- .submit {
- background-color: #028DFE;
- }
- .not {
- background-color: #D2D2D2;
- }
- }
-
- .double {
- display: flex;
- justify-content: space-between;
- .btn {
- width: 280rpx;
- height: 80rpx;
- line-height: 80rpx;
- text-align: center;
- font-size: 30rpx;
- &:first-child {
- background-color: #028DFE;
- color: #fff;
- }
- &:last-child {
- border: solid 1px #028DFE;
- color: #028DFE;
- }
- }
- }
- }
- }
- }
|