1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222 |
-
- //pc端样式
- .main {
- width: 100%;
- max-width: 1920px;
- margin: 0 auto;
- }
- .banner{
- width: 100%;
- height: 100vh;
- .bannerSwiper{
- width: 100%;
- height: 100%;
- img{
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- .btn-prev,.btn-next{
- position: absolute;
- top: 50%;
- margin-top: -40px;
- width: 80px;
- height: 80px;
- z-index: 2;
- text-align: center;
- color: #ecf6fb;
- background: transparent;
- transition: all .3s ease-in-out;
- cursor: pointer;
- border-radius: 40px;
- line-height: 80px;
- box-sizing: border-box;
- border: 1px solid #fff;
- span{
- font-size: 44px;
- display: inline-block;
- line-height: 80px;
- transform: rotate(90deg);
- }
- &:hover{
- color: #b81c25;
- background: #fff;
- }
- }
- .btn-prev{
- left: 100px;
- span{
- transform: rotate(-90deg);
- }
- }
- .btn-next{
- right: 100px;
- }
- .swiper-button-disabled{
- cursor: no-drop;
- background: transparent;
- color: #ecf6fb;
- opacity: 0.6;
- &:hover{
- color: #ecf6fb;
- background: transparent;
- }
- }
- .swiper-pagination{
- bottom: 60px;
- .swiper-pagination-bullet{
- background: #ffffff;
- opacity:1;
- position: relative;
- width: 12px;
- height: 12px;
- margin:0 17px;
- &::before{
- content: '';
- position: absolute;
- left: -5px;
- top: -5px;
- width: 20px;
- height: 20px;
- border-radius: 50%;
- border: 1px solid #b81c25;
- opacity: 0;
- transition: all .3s ease-in-out;
- }
- }
- .swiper-pagination-bullet-active{
- background: #b81c25;
- &::before{
- opacity: 1;
- }
- }
- }
-
- }
- .slideCon{
- width: 100%;
- max-width: 1300px;
- height: 100%;
- box-sizing: border-box;
- margin: 0 auto;
- padding-top: 230px;
- position: absolute;
- top: 0px;
- left: 50%;
- transform: translateX(-50%);
- color: #fff;
- text-align: left;
- .title{
-
- br{
- display: none;
- }
- }
- .btn{
- position: absolute;
- bottom: 10%;
- left: 50%;
- margin-left: -100px;
- }
- }
- }
- .news{
- width: 100%;
- text-align: center;
- padding: 140px 0px;
- .newsCon{
- width: 100%;
- height: 512px;
- overflow: hidden;
- max-width: 1300px;
- margin: 60px auto 80px;
- position: relative;
- display: flex;
- &>div{
- width: 50%;
- height: 100%;
- overflow: hidden;
- .swiper-pagination{
- bottom: 20px;
- .swiper-pagination-bullet{
- background: #ffffff;
- opacity:1;
- position: relative;
- width: 6px;
- height: 6px;
- margin:0 9px;
- &::before{
- content: '';
- position: absolute;
- left: -3px;
- top: -3px;
- width: 10px;
- height: 10px;
- border-radius: 50%;
- border: 1px solid #b81c25;
- opacity: 0;
- transition: all .3s ease-in-out;
- }
- }
- .swiper-pagination-bullet-active{
- background: #b81c25;
- &::before{
- opacity: 1;
- }
- }
- }
- .swiper{
- width: 100%;
- border-radius: 10px;
- z-index: -1;
- position: absolute;
- height: 100%;
- top: 0;
- left: 0;
- img{
- width: 100%;
- display: block;
- }
- .slideZ{
- position: absolute;
- top: 0px;
- left: 0px;
- width: 100%;
- height: 100%;
- background: url(./images/newsz.png) no-repeat bottom;
- }
- .slideCon{
- position: absolute;
- bottom: 0px;
- left: 0px;
- width: 100%;
- box-sizing: border-box;
- padding: 50px 30px;
- color: #fff;
- text-align: left;
- .time{
- font-size: 16px;
- }
- }
- }
- .newsShowSwiper{
- z-index: 1;
- }
- .newsTitList{
- width: 100%;
- display: flex;
- font-size: 20px;
- line-height: 30px;
- color: #A7A5A5;
- box-sizing: border-box;
- padding-left: 40px;
- justify-content: flex-start;
- .newsCk{
- font-size: 20px;
- color: #231F20;
- cursor: pointer;
- transition: all .3s ease-in-out;
- &:hover{
- color: #B81C25;
- }
- }
- .newsShow{
- color: #B81C25;
- font-weight: bold;
- }
- div{
- &:nth-child(2n){
- margin: 0px 40px;
- }
- }
- }
- .newsConList{
- width: 100%;
- height: calc(100% - 30px);
- box-sizing: border-box;
- padding-left: 40px;
- padding-top: 20px;
- overflow: hidden;
- &>div{
- width: 100%;
- height: 100%;
- display: none;
- .newsLi{
- width: 100%;
- display: flex;
- justify-content: space-between;
- border-bottom: 1px solid #acacac5e;
- padding: 24px 20px 24px 10px;
- box-sizing: border-box;
- &:last-child{
- border-bottom: 0px solid #ACACAC;
- }
- .timer{
- width: 65px;
- height: 66px;
- border-radius: 8px;
- border: 1px solid #A7A5A5;
- text-align: center;
- font-size: 12px;
- padding: 0px 12px 0;
- box-sizing: border-box;
- .timerData{
- font-size: 26px;
- color: #b81c25;
- border-bottom: 1px solid #b81c25;
- padding-bottom: 3px;
- margin-bottom: 3px;
- line-height: 30px;
- padding-top: 4px;
- }
- }
- .newsLiCon{
- width: calc(100% - 80px);
- font-size: 18px;
- text-align: left;
- &>div{
- overflow: hidden;
- white-space: nowrap;
- width: 100%;
- height: 24px;
- text-overflow: ellipsis;
- }
- .liTitle{
- color: #231F20;
- font-weight: 500;
- margin-bottom: 8px;
- padding-top: 6px;
- }
- .licon{
- font-weight: 400;
- color: #999999;
- font-size: 16px;
- }
- }
- }
- .liHight{
- background: rgba(184,28,37,.05);
- .newsLiCon{
- .liTitle,.licon{
- color: #b81c25;
- }
- }
- }
- }
- .newsDivShow{
- display: block;
- }
- }
- }
- .newsSp{
- position: relative;
- }
- }
- .btn3{
- margin: 0px auto;
- }
- }
- .product{
- width: 100%;
- text-align: center;
- padding: 125px 0px 110px;
- &>.text{
- width: 100%;
- max-width: 1300px;
- margin: 50px auto 0;
- text-align: left;
- }
- .productCon{
- margin: 60px auto 0px;
- width: 100%;
- .productTits{
- width: 100%;
- display: none;
- &>div{
- width: 100%;
- display: flex;
- justify-content: space-between;
- &>div{
- width: 144px;
- height: 146px;
- border-radius: 8px;
- color: #231F20;
- padding-top: 20px;
- box-sizing: border-box;
- cursor: pointer;
- transition: all .3s ease-in-out;
- div{
- margin-bottom: 30px;
- }
-
- }
- .productCk{
- color: #B81C25;
- font-weight: bold;
- }
- }
-
- }
- .productConBox{
- width: 100%;
- height: 420px;
- margin-top: 40px;
- overflow: hidden;
- &>div{
- width: 100%;
- height: 100%;
- }
- .swiper-slide{
- width: 312px;
- transition: width .3s ease-in-out;
- overflow: hidden;
- transform-origin: center;
- img {
- display: block;
- width: auto;
- height: 100%;
- object-fit: cover;
- position: relative;
- left: 50%;
- transform: translateX(-50%);
- }
- .slideZ{
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: url(./images/productz.png) no-repeat bottom;
- background-size: 100%;
- display: none;
- }
- .slideCon{
- position: absolute;
- width: 100%;
- bottom: 0px;
- left: 0;
- text-align: center;
- color: #fff;
- box-sizing: border-box;
- opacity: 0;
- background-color: #b81c25;
- height: 50px;
- line-height: 50px;
- transition: all .3s ease-in-out;
- .text{
- width: 100%;
- line-height: 50px;
- }
-
- }
- &:hover{
- width: 560px;
- .slideCon{
- opacity: 1;
- }
- }
- }
- }
- .swiper-page{
- width: 100%;
- max-width: 1300px;
- margin: 0px auto;
- margin-top: 80px;
- position: relative;
- height: 60px;
- display: flex;
- flex-direction: row;
- justify-content: flex-end;
- .btn-prev,.btn-next{
- width: 60px;
- height: 60px;
- text-align: center;
- color: #000;
- cursor: pointer;
- border-radius: 60px;
- line-height: 60px;
- box-sizing: border-box;
- border: 1px solid #000;
- transition: all .3s ease-in-out;
- span{
- font-size: 34px;
- display: inline-block;
- transform: rotate(90deg);
- }
- &:hover{
- color: #fff;
- background: #b81c25;
- border: 1px solid #b81c25;
- }
- }
- .btn-prev{
- margin-right: 30px;
- span{
- transform: rotate(-90deg);
- }
- }
- .btn-next{
- }
- .swiper-button-disabled{
- cursor: not-allowed;
- opacity: 0.6;
- &:hover{
- color: #000;
- background: #fff;
- border: 1px solid #000;
- }
- }
- }
- }
- }
- .about{
- width: 100%;
- text-align: center;
- background-color: #f8f8f8;
- position: relative;
- .aboutImg{
- width: 100%;
- max-width: 1920px;
- position: relative;
- margin: 0px auto;
- img{
- width: 100%;
- display: block;
- }
- .imgZi{
- position: absolute;
- top: 0px;
- left: 0px;
- }
- }
- .aboutCon{
- width: 100%;
- height: 100%;
- max-width: 1300px;
- position: absolute;
- top: 0px;
- left: 50%;
- transform: translateX(-50%);
- padding-top: 125px;
- text-align: left;
- box-sizing: border-box;
- .title{
- margin-bottom: 260px;
- }
- .sltImg{
- width: 300px;
- font-size: 20px;
- font-weight: bold;
- padding-top: 20px;
- border-top: 1px solid #dddddd;
- margin-bottom: 7%;
- img{
- width: 100%;
- display: block;
- margin-top: 20px;
- }
- }
- }
- }
- .history{
- width: 100%;
- position: relative;
- text-align: center;
- padding: 125px 0px 110px;
- .historyTit{
- width: 100%;
- max-width: 1300px;
- margin: 55px auto 65px;
- display: flex;
- justify-content: center;
- &>div{
- padding: 0px 30px;
- font-size: 20px;
- position: relative;
- cursor: pointer;
- transition: all .3s ease-in-out;
- &::before{
- content: '';
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- right: 0px;
- width: 1px;
- height: 16px;
- background: #000;
- }
- &:last-child{
- &::before{
- display: none;
- }
- }
- &:hover{
- color: #b81c25;
- }
- &.active{
- color: #b81c25;
- font-weight: bold;
- }
- }
- }
- .historyCon{
- width: 100%;
- position: relative;
-
- .historySwiper{
- width: 100%;
- .swiper-slide{
- width: 300px;
- height: 480px;
- position: relative;
- .hisImg{
- width: 100%;
- overflow: hidden;
- img{
- width: 100%;
- display: block;
- transition: all .3s ease-in-out;
- transform-origin: 50% 50%;
- }
- &:hover{
- img{
- transform: scale(1.1);
- }
- }
- }
- .hisTime{
- display: none;
- font-weight: bold;
- margin-top: 25px;
- font-size: 18px;
- }
- .text{
- font-size: 16px;
- line-height: 30px;
- margin-top: 20px;
- padding:0px 20px;
- }
- .hisBottom{
- position: absolute;
- bottom: 0px;
- left: 0px;
- width: 100%;
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- .hisLine{
- width: 310px;
- height: 1px;
- background: #999999;
- position: absolute;
- bottom: 54px;
- left: 0px;
- }
- .hisIcon{
- width: 46px;
- height: 46px;
- border: 1px solid #999999;
- border-radius: 50%;
- position: relative;
- .cil1{
- position: absolute;
- width: 32px;
- height: 32px;
- background: #fff;
- box-sizing: border-box;
- border: 1px solid #999999;
- top: 7px;
- left: 7px;
- border-radius: 50%;
- }
- .cil2{
- position: absolute;
- width: 10px;
- height: 10px;
- background: #999999;
- box-sizing: border-box;
- top: 18px;
- left: 18px;
- border-radius: 50%;
- }
- .cil3{
- position: absolute;
- width: 1px;
- height: 40px;
- background: #999999;
- bottom: 28px;
- left: 23px;
- }
- }
- .hisBTime{
- width: 100%;
- font-size: 20px;
- line-height: normal;
- font-family: 'MyFont1';
- color: #000;
- margin-top: 2px;
- }
- }
- &:last-child{
- .hisLine{
- &::before{
- content: '';
- width: 8px;
- height: 8px;
- border-radius: 4px;
- background: #fff;
- border: 1px solid #999999;
- box-sizing: border-box;
- position: absolute;
- top: -4px;
- right:0px
- }
- }
- }
- }
- .activeShow{
- .text{
- color: #b81c25;
- }
- .hisTime{
- color: #b81c25;
- }
- .hisBottom{
-
- .hisIcon{
- border: 1px solid rgba(184, 28, 37, 0.3);
- .cil1{
- border: 1px solid #b81c25;
- }
- .cil2{
- background: #b81c25;
- }
- }
- .hisBTime{
- color: #b81c25;
- }
- }
- }
- }
- .swiper-page{
- width: 100%;
- max-width: 1300px;
- margin: 0px auto;
- margin-top: 80px;
- position: relative;
- height: 60px;
- display: none;
- flex-direction: row;
- justify-content: flex-end;
- .btn-prev,.btn-next{
- width: 40px;
- height: 40px;
- border-radius: 40px;
- line-height: 40px;
- text-align: center;
- color: #000;
- cursor: pointer;
- box-sizing: border-box;
- border: 1px solid #000;
- transition: all .3s ease-in-out;
- span{
- font-size: 26px;
- display: inline-block;
- transform: rotate(90deg);
- }
- &:hover{
- color: #fff;
- background: #b81c25;
- border: 1px solid #b81c25;
- }
- }
- .btn-prev{
- // margin-right: 30px;
- span{
- transform: rotate(-90deg);
- }
- }
- .btn-next{
- }
- .swiper-button-disabled{
- cursor: not-allowed;
- opacity: 0.6;
- &:hover{
- color: #000;
- background: #fff;
- border: 1px solid #000;
- }
- }
- }
- }
- }
- .corporate{
- width: 100%;
- position: relative;
- text-align: center;
- padding: 85px 0px 0px;
- .corporateSwiper{
- margin-top: 60px;
- img{
- display: block;
- }
-
- }
- .corCon{
- position: absolute;
- width: 100%;
- bottom: 0px;
- left: 0px;
- text-align: center;
- z-index: 2;
- padding-bottom: 60px;
- .corTits{
- width: 440px;
- margin: 0px auto;
- height: 60px;
- display: flex;
- justify-content: space-between;
- border-bottom: 1px solid #999;
- line-height: 60px;
- color: #fff;
- box-sizing: border-box;
- div{
- font-size: 20px;
- padding: 0px 10px;
- position: relative;
- cursor: pointer;
- &::before{
- content: '';
- position: absolute;
- bottom: -1px;
- left: 0px;
- width: 100%;
- height: 2px;
- background: #B81C25;
- opacity: 0;
- }
- }
- .activS{
- color: #B81C25;
- &::before{
- opacity: 1;
- }
- }
- }
- .corTxts{
- width: 100%;
- margin-top: 20px;
- color: #fff;
- font-size: 20px;
- div{
- display: none;
- }
- .activS{
- display: block;
- }
- }
- }
- }
-
- @media screen and (min-width: 801px) and (max-width: 1400px) {
- .banner {
- .slideCon{
- padding-top: 160px;
- box-sizing: border-box;
- }
- }
- }
- @media screen and (min-width:800px){
-
- .goTop{
- .goTopBtn{
- background: #ffffff;
- .btnShow{
- .btnIcon{
- background-color: #0056A7;
- }
- }
- &:hover{
- background: #ffffff;
-
- }
- }
- }
- }
- .mTxt{
- display: none;
- }
- //移动端样式
- @media screen and (max-width:800px) {
- .pcTxt{
- display: none;
- }
- .mTxt{
- display: block;
- }
- .banner{
- width: 100%;
- height: 100vh;
- .swiper{
- width: 100%;
- height: 100%;
- }
- .slideCon{
- padding: 0 15px;
- padding-top: 130px;
- height: auto;
- .title{
- font-size: 32px;
- line-height: 48px;
- br{
- display: block;
- }
- }
- }
- .btn-prev,.btn-next{
- display: none;
- }
- .bannerSwiper{
- .swiper-pagination{
- display: block;
- bottom: 60px;
- .swiper-pagination-bullet{
- width: 5px;
- height: 5px;
- margin: 0 6px;
- &::before{
- left: -4px;
- top: -4px;
- width: 10px;
- height: 10px;
- }
- }
- }
- }
- }
- .news{
- padding: 110px 15px 70px;
- box-sizing: border-box;
- .newsCon{
- margin: 35px auto 32px;
- height: auto;
- flex-wrap: wrap;
- padding-top: 50px;
- &>div{
- width: 100%;
- height: auto;
- .swiper{
- position: relative;
- display: none;
- .slideCon{
- padding: 20px;
- .time{
- font-size: 13px;
- }
- }
- }
- .newsShowSwiper{
- display: block;
- }
- .swiper-pagination{
- display: none;
- }
- .newsTitList{
- padding-left: 0px;
- font-size: 14px;
- line-height: 24px;
- position: absolute;
- top: 0px;
- left: 0px;
- justify-content: center;
- .newsCk{
- font-size: 16px;
- }
- &>div{
- &:nth-child(2n){
- margin: 0px 30px;
- }
- }
- }
- .newsConList{
- padding-left: 0px;
- padding-top: 0px;
- height: auto;
- &>div{
- .newsLi{
- .timer .timerData{
- font-weight: bold;
- }
- .newsLiCon{
- font-size: 16px;
- padding-top: 4px;
- &>div{
- height: 20px;
- }
- .liTitle{
- margin-bottom: 8px;
- }
- }
- }
-
- }
- }
- }
- }
- }
- .product{
- padding: 100px 15px;
- box-sizing: border-box;
- &>.text{
- margin: 30px auto 0;
- }
- .productCon{
- margin: 40px auto 0px;
- .productTits{
- overflow-x: auto;
- display: block;
- &::-webkit-scrollbar{
- -webkit-appearance: none;
- width: 0px;
- height: 0px;
- }
-
- // &::-webkit-scrollbar:horizontal{
- // width: 2px;
- // height: 100%;
- // background: #fff;
- // }
- &::-webkit-scrollbar-thumb{
- width: 0px;
- height: 0px;
- background: #B81C25;
- }
- &>div{
- width: 1002px;
- justify-content: flex-start;
- &>div{
- width: auto;
- height: auto;
- padding-top: 0px;
- padding-right: 20px;
- position: relative;
- margin-right: 20px;
- &:last-child{
- padding-right: 0px;
- margin-right: 0px;
- &::before{
- display: none;
- }
- }
- &::before{
- content: '';
- position: absolute;
- right: 0px;
- top: 4px;
- width: 1px;
- height: 13px;
- background: #999;
- transform: rotate(20deg);
- }
- div{
- margin-bottom: 0px;
- font-size: 14px;
- }
- }
- }
- }
- .productConBox{
- margin-top: 35px;
- height: auto;
- &>div{
- height: auto;
- }
- .swiper-slide{
- width: 100%;
- height: auto;
- img{
- width: 100%;
- height: auto;
- }
- .slideZ{
- display: none;
- }
- .slideCon{
- position: relative;
- color: #231F20;
- display: block;
- height: 30px;
- line-height: 30px;
- background: #f8f8f8;
- opacity: 1;
- .text {
- line-height:normal;
- line-height: 30px;
- font-size: 14px;
- }
- }
- }
- }
- .swiper-page{
- margin-top: 40px;
- height: 40px;
- justify-content: center;
- .btn-prev,.btn-next{
- width: 40px;
- height: 40px;
- border-radius: 40px;
- line-height: 40px;
- span{
- font-size: 26px;
- }
- }
- }
- }
- }
- .about{
- padding: 110px 15px;
- box-sizing: border-box;
- .title{
- margin-bottom: 40px;
- }
- .aboutCon {
- position: relative;
- height: auto;
- text-align: center;
- padding-top: 15px;
- .sltImg{
- margin: 0px auto;
- padding-top: 0px;
- border-top: 0px solid #dddddd;
- img{
- width: 150px;
- margin: 15px auto 40px;
- }
- }
- .btn3{
- margin: 0px auto;
- }
- }
-
- }
- .history{
- padding: 110px 15px;
- box-sizing: border-box;
- .historyTit{
- margin: 35px auto 25px;
- &>div{
- padding: 0px;
- width: 25%;
- font-size: 14px;
- &::before{
- height: 12px;
- }
- }
- }
- .historyCon{
- .historySwiper{
- .swiper-slide{
- width: 100%;
- height: auto;
- .hisTime{
- display: block;
- }
- .hisBottom{
- display: none;
- }
- .text{
- margin-top: 10px;
- }
- }
- }
- .swiper-page{
- display: flex;
- justify-content: space-between;
- margin-top: 20px;
- height: 40px;
- .rightDiv{
- width: 60%;
- text-align: left;
- display: flex;
- align-items: flex-end;
- padding-bottom: 5px;
- border-bottom: 1px solid #dddddd;
- color: #B81C25;
- position: relative;
- font-size: 12px;
- height: 30px;
- .nowNum{
- margin-right: 5px;
- font-size: 15px;
- position: relative;
- top: 2px;
- }
- .allNum{
- margin-left: 5px;
- }
- .fillLine{
- position: absolute;
- right: 0px;
- bottom: -1px;
- width: 50%;
- height: 1px;
- background: #B81C25;
- }
- }
- }
- }
- }
- .corporate{
- padding: 0px;
- .corporateSwiper {
- margin-top: 35px;
- }
- .corCon{
- position: relative;
- padding: 20px 15px 0;
- box-sizing: border-box;
- .corTits{
- color: #231f20;
- width: 100%;
- height: 40px;
- line-height: 40px;
- div{
- font-size: 16px;
- padding: 0px 0px;
- }
- .activS{
- font-weight: bold;
- }
- }
- .corTxts{
- margin-top: 30px;
- color: #231f20;
- font-size: 16px;
- }
- }
- }
- .society{
- padding-bottom: 110px;
- display: flex;
- flex-direction: column-reverse;
- .societyCon{
- position: relative;
- color: #231F20;
- padding-top: 0px;
- padding-left: 15px;
- padding-right: 15px;
- box-sizing: border-box;
- .text{
- margin-top: 40px;
- margin-bottom: 30px;
- }
- .btn{
- display: none;
- }
- }
- &>.btn{
- display: block;
- margin-top: 80px;
- }
- }
- }
|