123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- @import 'global.scss';
- .bigEvent{
- padding-top: 20px;
- @media(min-width:768px){
- padding-top: 45px;
- }
- @media(min-width:1200px){
- padding-top: 60px;
- }
- .list-title{
- line-height: 1.4;
- font-size: 24px;
- padding: 25px 0;
- @media(min-width:768px){
- padding: 50px 0;
- font-size: 36px;
- }
- @media(min-width:1200px){
- font-size: 46px;
- margin-bottom: 30px;
- }
- }
- }
- .time-line{
- .yaer-box{
- position: relative;
- padding-left: 25px;
- padding-bottom:20px;
- @media(min-width:768px){
- padding-left: 50px;
- padding-bottom: 50px;
- }
- &:before{
- content: '';
- position: absolute;
- left: 0;
- top: 0;
- z-index: 4;
- display: block;
- width: 20px;
- height: 24px;
- background: #fff url('/assets/image/time-line.png') no-repeat center;
- background-size: contain;
- }
- &:after{
- content: '';
- position: absolute;
- left: 9.5px;
- top: 0px;
- display: block;
- width: 1px;
- height: 100%;
- z-index: 1;
- background-color: #ff9b9b;
- }
- &~.yaer-box:before{
- width: 12px;
- height: 12px;
- border-radius: 50%;
- border:1px solid #ff9b9b;
- left: 4px;
- top: 9px;
- background:#fff;
- }
- }
- h3{
- font-size: 30px;
- line-height: 30px;
- padding-bottom: 30px;
- }
- ul{
- li{
- padding-left: 20px;
- padding-bottom: 30px;
- line-height: 30px;
- position: relative;
- font-size: 16px;
- @media(min-width:768px){
- padding-left: 30px;
- }
- &:before{
- content:'';
- position: absolute;
- width: 8px;
- height: 8px;
- border-radius: 50%;
- background-color: $color;
- left: 0;
- top: 11px;
- z-index: 5;
- }
- }
- span{
- color: #333;
- transition: all .5s ease;
- padding: 5px 0;
- cursor: text;
- @media(min-width:1920px){
- font-size: 16px;
- }
- @media(max-width:1920px){
- font-size: 15px;
- }
- @media(max-width:768px){
- font-size: 14px;
- }
-
- }
- }
- }
- .date-list{
- width: 100px;
- position: fixed;
- padding-top: 70px;
- a{
- display: block;
- height: 50px;
- line-height: 50px;
- text-align: center;
- color: $color;
- transition: all 0.5s ease;
- &.cur{
- background-color: $color;
- color:#fff;
- }
- }
- }
- @media(max-width:768px){
- .date-list-box{
- display: none;
- }
- }
|