123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- .footer-page{
- position: relative;
- }
- .footer-page.mobile{
- display: none;
- }
- .footer-page .bg{
- position: absolute;
- top: -6.97vw;
- left: 0;
- width: 100%;
- height: calc(24.32vw + 1.71vw);
- margin-bottom: 33px;
- background-image: url("../../../assets/images/common/bg1.png");
- background-size: 100% 100%;
- padding: 6.97vw 12.55vw 0 12.55vw;
- box-sizing: border-box;
- }
- .footer-page .content{
- padding-top: 1.71vw;
- display: flex;
- justify-content: space-between;
- }
- .footer-page .content .left .down{
- font-size: 1.56vw;
- font-family: Gilroy, Gilroy-Bold;
- font-weight: 700;
- text-align: left;
- color: #018cff;
- margin-bottom: 1.3vw;
- }
- .footer-page .content .left img{
- width: 7.81vw;
- height: 2.5vw;
- }
- .footer-page .content .right{
- display: flex;
- justify-content: space-between;
- width: 40.36vw;
- }
- .footer-page .content .right .item {
- display: flex;
- justify-content: space-around;
- flex-flow: column;
- }
- .footer-page .content .right .item .title{
- font-size: 0.93vw;
- font-family: EuclidSquare, EuclidSquare-Medium;
- font-weight: 500;
- color: #242a30;
- line-height: 3.8vw;
- }
- .footer-page .content .right .item .link{
- font-size: 0.729vw;
- font-family: EuclidSquare, EuclidSquare-Medium;
- font-weight: 500;
- color: #8E9DAA;
- line-height: 1.56vw;
- }
- .footer-page .split{
- width: 75vw;
- height: 1px;
- opacity: 0.2;
- background: #a0acb7;
- margin: 3.38vw auto 0 auto;
- }
- .footer-page .bottom{
- display: flex;
- justify-content: space-between;
- margin-top: 1.4vw;
- color: #97a5b0;
- }
- .footer-page .bottom .copyright {
- font-size: 14px;
- font-family: EuclidSquare, EuclidSquare-Medium;
- font-weight: 500;
- color: #97a5b0;
- }
- .footer-page .bottom img{
- width: 1.87vw;
- height: 1.87vw;
- }
- /*移动端*/
- @media screen and (max-width: 960px) {
- .footer-page.mobile{
- display: block;
- }
- .footer-page.mobile .bg{
- padding: 6.97vw 4vw 5.33vw 4vw;
- background-size: 100%;
- height: auto;
- }
- .footer-page.pc{
- display: none;
- }
- .footer-page.mobile .accordion-item{
- border-top: none;
- border-left:none;
- border-right: none;
- }
- .footer-page.mobile .copyright{
- margin: 8vw 0 0 4vw;
- text-align: center;
- font-size: 3.2vw;
- font-family: NexaBold, NexaBold-Regular;
- font-weight: 400;
- color: #97a5b0;
- }
- .footer-page.mobile .down{
- font-size: 6.4vw;
- font-family: NexaBold, NexaBold-Regular;
- font-weight: 400;
- color: #018cff;
- margin-bottom: 4vw;
- text-align: center;
- }
- .footer-page.mobile .img-box{
- display: flex;
- justify-content: space-between;
- }
- .footer-page.mobile .img-box img{
- width: 26vw;
- }
- }
|