.index-s-title {
    width: 30%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.index-s-title>div {
    font-size: 30px;
}

.index-s-title>p {
    color: #d9d9d9;
    text-transform: uppercase;
    text-shadow: 0px -1px 0px #9e9e9e;
    font-family: En_bold;
    font-size: 16px;
    line-height: 60px;
}

.show {
    opacity: 1 !important;
}

.lucency {
    opacity: 0;
}

.delay100 {
    animation-delay: 100ms;
}

.delay200 {
    animation-delay: 200ms;
}

.delay300 {
    animation-delay: 300ms;
}

.delay400 {
    animation-delay: 400ms;
}

.delay500 {
    animation-delay: 500ms;
}

.delay600 {
    animation-delay: 600ms;
}


/* 导航栏 */

.im-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, .3);
    padding: 15px 35px;
    z-index: 100;
    font-size: 0;
    color: #fff;
    transition: all 1s linear;
}

.im-nav.active {
    padding: 0 35px;
}

.im-nav>div {
    height: 90px;
    align-items: center;
}

.im-nav .logo {
    display: inline-block;
    width: 200px;
}

.im-nav ul {
    width: 100%;
    height: 90px;
    line-height: 90px;
    font-size: 16px;
    justify-content: space-around;
}

.im-nav .imn-middle {
    width: 70%;
}

.im-nav li {
    cursor: pointer;
    animation-delay: 1s;
}


/* 768px */

@media (max-width:1400px) {}

@media (max-width:1200px) {}

@media (max-width:1050px) {}

@media (max-width:920px) {}

.im-nav li:hover,
.im-nav li.selected span {
    color: rgba(255, 255, 255, 1);
}

.im-nav li:hover span {
    color: rgba(255, 255, 255, 1);
}

.im-nav li span {
    position: relative;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
}

.im-nav li.selected span::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background-color: #fff;
}

.im-nav>img {
    display: none;
}


/* 轮播 */

.im-swiper {
    width: 100%;
    height: 100vh;
    position: relative;
}

.im-swiper .swiper-container {
    width: 100%;
    height: 100%;
}

.im-swiper .swiper-slide {
    position: relative;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.im-swiper .swiper-slide:nth-of-type(1) {
    background-image: url(../img/swiper2.jpg);
}

.im-swiper .swiper-slide:nth-of-type(2) {
    background-image: url(../img/swiper1.png);
}

.im-swiper .swiper-slide:nth-of-type(3) {
    background-image: url(../img/swiper3.jpg);
}

.im-swiper .swiper-slide .content {
    position: absolute;
    color: #fff;
    z-index: 10;
}

.im-swiper .swiper-slide .content {
    opacity: 0;
}

.im-swiper .swiper-slide .content>div {
    font-size: 90px;
    animation-delay: .5s;
}

.im-swiper .swiper-slide .content>p {
    opacity: .8;
}

.im-swiper .swiper-slide .content i {
    font-size: 16px;
    opacity: .8;
    font-style: normal;
    margin-left: 15px;
}

.im-swiper .swiper-slide:nth-of-type(1) .content {
    left: 5%;
    top: 51%;
}

.im-swiper .swiper-slide:nth-of-type(1) .content>p {
    font-size: 16px;
    animation-delay: .6s;
}

.im-swiper .swiper-slide:nth-of-type(2) .content {
    right: 5%;
    top: 44%;
}

.im-swiper .swiper-slide:nth-of-type(2) .content>p {
    font-size: 20px;
    animation-delay: .6s;
    margin-top: 20px;
}

.im-swiper .swiper-slide:nth-of-type(3) .content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.im-swiper .swiper-slide:nth-of-type(3) .content>p {
    font-size: 20px;
    margin-top: 20px;
    animation-delay: .8s;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 26%;
    color: #fff;
    width: 52%;
}

.lunbo-dot {
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px;
    opacity: .4;
    font-size: 26px;
    cursor: pointer;
}

.swiper-dot {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 65%;
    color: #fff;
    width: 52%;
    cursor: pointer;
}

.lunbo-dot-choose {
    opacity: 1;
}

.swiper-pagination::before,
.swiper-pagination::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 1px;
    background-color: rgba(255, 255, 255, .4);
}

.swiper-pagination::before {
    width: 24%;
    margin-right: 2%;
}

.swiper-pagination::after {
    width: 46%;
    margin-left: 2%;
}

.swiper-tip {
    position: absolute;
    left: 90%;
    bottom: 100px;
    font-size: 18px;
    line-height: 18px;
    cursor: pointer;
    z-index: 9;
    color: #fff;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    width: 180px;
}

.swiper-tip span:last-of-type {
    margin-left: 20px;
    animation: nextScr 2s ease infinite;
}

@keyframes nextScr {
    0% {
        margin-left: 20px;
        opacity: 1;
    }
    100% {
        margin-left: 80px;
        opacity: 0;
    }
}

.swiper-tip i {
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}


/* 律所介绍 */

.im-block {
    padding: 100px 0;
    position: relative;
}

.im-block>.content {
    width: 72.916%;
    margin: 0 auto;
}

.im-name {
    background-color: #fff;
}

.im-name .im-n-body {
    font-size: 14px;
    line-height: 30px;
    padding: 30px 0 0;
}

.im-name .im-n-body p {
    text-indent: 2em;
}

.im-name .im-n-body .im-n-img {
    justify-content: space-around;
    margin: 20px 0;
}

.im-name .im-n-body img {
    height: 200px;
}


/* 业务领域 */

.im-business {
    background-image: url(../img/bg2.png);
    background-repeat: repeat;
    position: relative;
}

.im-business .index-s-title {
    display: inline-block;
    border-bottom: 1px solid #9e9e9e;
    color: #fff;
    text-align: right;
    margin-left: 70%;
}

.im-business .index-s-title>p {
    color: #d9d9d9;
    text-shadow: 0px -1px 0px #9e9e9e;
}

.ib-c-body1 {
    display: none;
}

.ib-c-body .circle {
    width: 38%;
    height: 0;
    position: relative;
    padding-bottom: 38%;
    margin: 160px auto 90px;
    border-radius: 50%;
    z-index: 1;
}

.ib-c-body .circle>.img {
    width: 90%;
    padding-bottom: 90%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    border: 1px solid #fff;
    border-radius: 50%;
    z-index: 3;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.ib-c-body .circle::before,
.ib-c-body .circle::after {
    position: absolute;
    content: '';
    display: block;
    height: 0;
    border: 1px solid #e8c22f;
    border-radius: 50%;
    z-index: 2;
    transition: all .5s linear;
}

.ib-c-body .circle::before {
    left: -50px;
    top: -50px;
    width: calc(100% + 100px);
    padding-bottom: calc(100% + 100px);
}

.ib-c-body .circle.change0>.img {
    background-image: url(../img/index1.jpg);
}

.ib-c-body .circle.change1>.img {
    background-image: url(../img/index2.jpg);
}

.ib-c-body .circle.change2>.img {
    background-image: url(../img/index3.jpg);
}

.ib-c-body .circle.change3>.img {
    background-image: url(../img/index4.jpg);
}

.ib-c-body .circle.change4>.img {
    background-image: url(../img/index5.jpg);
}

.ib-c-body .circle.change5>.img {
    background-image: url(../img/index6.jpg);
}

.ib-c-body .circle.change6>.img {
    background-image: url(../img/index7.jpg);
}

.ib-c-body .circle.change7>.img {
    background-image: url(../img/index8.jpg);
}

.ib-c-body .circle.change0::before {
    transform: translate(0, -4px);
}

.ib-c-body .circle.change1::before {
    transform: translate(0px, -4px);
}

.ib-c-body .circle.change1::after {
    transform: translate(-6px, 8px);
}

.ib-c-body .circle.change2::before {
    transform: translate(-4px, 0);
}

.ib-c-body .circle.change3::before {
    transform: translate(0px, 4px);
}

.ib-c-body .circle.change3::after {
    transform: translate(-6px, -8px);
}

.ib-c-body .circle.change4::before {
    transform: translate(0, 4px);
}

.ib-c-body .circle.change5::before {
    transform: translate(0px, 4px);
}

.ib-c-body .circle.change5::after {
    transform: translate(6px, -8px);
}

.ib-c-body .circle.change6::before {
    transform: translate(4px, 0);
}

.ib-c-body .circle.change7::before {
    transform: translate(0px, -4px);
}

.ib-c-body .circle.change7::after {
    transform: translate(6px, 8px);
}

.ib-c-body .circle::after {
    left: -54px;
    top: -54px;
    width: calc(100% + 108px);
    padding-bottom: calc(100% + 108px);
}

.ib-c-body .circle ul {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.ib-c-body .circle li {
    position: absolute;
    width: 90px;
    height: 90px;
    border: 1px #e8c22f solid;
    border-radius: 50%;
    background-color: #5e5e5e;
    cursor: pointer;
    background-size: 55%;
    background-position: center;
    background-repeat: no-repeat;
    transition: all .5s linear;
}

.ib-c-body .circle li.selected {
    background-color: #fff;
}

.ib-c-body .circle li.selected div {
    color: #fff;
}

.ib-c-body .circle li>div {
    position: absolute;
    color: #a2a19e;
    font-size: 16px;
    white-space: nowrap;
    text-align: center;
}

.ib-c-body .circle li:first-of-type {
    top: -90px;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    background-image: url(../img/yw1.png);
}

.ib-c-body .circle li:first-of-type.selected {
    background-image: url(../img/yw1-1.png);
}

.ib-c-body .circle li:first-of-type div {
    top: -46px;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
}

.ib-c-body .circle li:nth-of-type(2) {
    left: -3.2%;
    top: -3.2%;
    background-image: url(../img/yw2.png);
}

.ib-c-body .circle li:nth-of-type(2).selected {
    background-image: url(../img/yw2-2.png);
}

.ib-c-body .circle li:nth-of-type(2) div,
.ib-c-body .circle li:nth-of-type(3) div,
.ib-c-body .circle li:nth-of-type(4) div {
    right: 100px;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
}

.ib-c-body .circle li:nth-of-type(3) {
    top: 50%;
    left: -90px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    background-image: url(../img/yw3.png);
}

.ib-c-body .circle li:nth-of-type(3).selected {
    background-image: url(../img/yw3-3.png);
}

.ib-c-body .circle li:nth-of-type(4) {
    left: -3.2%;
    bottom: -3.2%;
    background-image: url(../img/yw4.png);
}

.ib-c-body .circle li:nth-of-type(4).selected {
    background-image: url(../img/yw4-4.png);
}

.ib-c-body .circle li:nth-of-type(5) {
    bottom: -90px;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    background-image: url(../img/yw5.png);
}

.ib-c-body .circle li:nth-of-type(5).selected {
    background-image: url(../img/yw5-5.png);
}

.ib-c-body .circle li:nth-of-type(5) div {
    bottom: -46px;
    left: 50%;
    transform: translate(-50%, 0);
}

.ib-c-body .circle li:nth-of-type(6) {
    right: -3.2%;
    bottom: -3.2%;
    background-image: url(../img/yw6.png);
}

.ib-c-body .circle li:nth-of-type(6).selected {
    background-image: url(../img/yw6-6.png);
}

.ib-c-body .circle li:nth-of-type(7) {
    top: 50%;
    right: -90px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    background-image: url(../img/yw7.png);
}

.ib-c-body .circle li:nth-of-type(7).selected {
    background-image: url(../img/yw7-7.png);
}

.ib-c-body .circle li:nth-of-type(8) {
    right: -3.2%;
    top: -3.2%;
    background-image: url(../img/yw8.png);
}

.ib-c-body .circle li:nth-of-type(8).selected {
    background-image: url(../img/yw8-8.png);
}

.ib-c-body .circle li:nth-of-type(6) div,
.ib-c-body .circle li:nth-of-type(7) div,
.ib-c-body .circle li:nth-of-type(8) div {
    left: 100px;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
}


/* 专业团队 */

.im-team {
    /* background-color: #edf0f0; */
    background-image: url(../img/index_5_background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.it-c-body {
    box-sizing: border-box;
    width: 100%;
    padding: 30px 0;
    margin: 40px 0 66px;
    overflow: hidden;
}

.it-c-body .swiper-slide {
    box-sizing: border-box;
    width: 650px;
    height: 330px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    color: #999;
    box-shadow: 0 4px 4px rgb(90, 89, 89, .5);
}

.it-c-body .swiper-slide div {
    margin-bottom: 18px;
    font-size: 14px;
}

.it-c-body .swiper-slide p {
    line-height: 26px;
    font-size: 14px;
}

.it-c-body .swiper-slide span {
    color: #d9d9d9;
    text-transform: uppercase;
    text-shadow: 0px -1px 0px #9e9e9e;
    font-family: En_bold;
    font-size: 18px;
}

.it-c-body1 {
    color: #999;
    font-size: 1.4rem;
    display: none;
}

.it-c-body1 .itc-b1-item {
    box-sizing: border-box;
    width: 100%;
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
}

.it-c-body1 .itc-b1-item:first-of-type {
    background-image: linear-gradient(to right, #fff, #c9e5fc)
}

.it-c-body1 .itc-b1-item:nth-of-type(2) {
    background-image: linear-gradient(to right, #fff, #f7d7e4)
}

.it-c-body1 .itc-b1-item:last-of-type {
    background-image: linear-gradient(to right, #fff, #f7fcc9)
}

.it-c-body .swiper-slide:nth-of-type(3) {
    background-image: linear-gradient(to right, #fff, #c9e5fc)
}

.it-c-body .swiper-slide:nth-of-type(4) {
    background-image: linear-gradient(to right, #fff, #f7d7e4)
}

.it-c-body .swiper-slide:nth-of-type(5) {
    background-image: linear-gradient(to right, #fff, #f7fcc9)
}

.it-c-body .swiper-slide:nth-of-type(6) {
    background-image: linear-gradient(to right, #fff, #c9e5fc)
}

.it-c-body .swiper-slide:nth-of-type(7) {
    background-image: linear-gradient(to right, #fff, #f7d7e4)
}

.it-c-body .swiper-slide:nth-of-type(8) {
    background-image: linear-gradient(to right, #fff, #f7fcc9)
}


/* 联系我们 */


/* .im-contact{
    background-image: url(../img/bg1.png);
    background-repeat: no-repeat;
    background-size: cover;
} */

.im-contact .index-s-title {
    text-align: right;
    margin-left: 70%;
}

.imc-c-body .address {
    width: 100%;
    margin: 30px auto 10px;
    height: 400px;
}

.imc-c-body p {
    font-size: 14px;
}

.mobile-nav {
    display: none;
}


/* 底部 */

.im-foot {
    background-image: url(../img/bg2.png);
    background-repeat: repeat;
    position: relative;
    padding: 20px 0;
    color: #fff;
}

.im-foot .content {
    width: 72.916%;
    margin: 0 auto;
    font-size: 14px;
}

.im-foot a {
    font-size: 14px;
    text-decoration: none;
    color: #fff;
}

.im-right {
    position: fixed;
    width: 210px;
    right: 4px;
    bottom: 100px;
    z-index: 100000;
    /* border-radius: 66px; */
    /* box-shadow: 2px 4px 14px rgba(0,0,0,0.6); */
    overflow: hidden;
}

.im-right img {
    display: block;
    width: 100%;
}


/* 新闻中心 */

.im-news ul {
    padding-top: 30px;
}

.im-news li a {
    width: 100%;
    box-shadow: 0px 2px 20px 0px rgb(0 0 0 / 10%);
    border: 1px solid #f8f8f8;
    margin-bottom: 30px;
    padding: 30px 20px;
    margin-bottom: 20px;
    cursor: pointer;
    text-decoration: none;
    align-items: center;
}

.im-news li a:hover {
    box-shadow: 0px 2px 20px 0px rgba(119, 65, 27, 1);
}

.im-news li a:hover div.right .title {
    color: rgba(119, 65, 27, 1);
}

.im-news li .left {
    width: 300px;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.im-news li .left img {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    transition: all .5s linear;
}

.im-news li .left img:hover {
    transform: translate(-50%, -50%) scale(1.1);
    -webkit-transform: translate(-50%, -50%) scale(1.1);
}

.im-news li .right {
    width: calc(100% - 350px);
}

.im-news li .right .title {
    font-size: 20px;
    font-weight: bold;
    color: #31424e;
}

.im-news li .right .time {
    margin: 20px 0;
}

.im-news li .right .time span {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    color: #bbb;
}

.im-news li .right .time img {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.im-news li .right .detail {
    color: #666;
    font-size: 15px;
    line-height: 24px;
}

@media (max-width: 768px) {
    .im-right {
        width: 132px;
        border-radius: 45px;
        bottom: 50px;
    }
    /* 导航栏 */
    .mobile-nav {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
    }
    .mobile-nav>a {
        display: block;
        width: 100%;
        font-size: 1.3rem;
        line-height: 3.5rem;
        text-align: center;
        color: rgba(0, 0, 0, 0.7);
        text-decoration: none;
        background-color: white;
        border-top: 1px solid #eee;
        font-weight: bold;
    }
    .im-nav {
        padding: 5px 10px;
    }
    .im-nav.active {
        padding: 0 10px;
    }
    .im-nav ul {
        display: none;
    }
    .im-nav>div {
        height: auto;
    }
    .im-nav>img {
        box-sizing: content-box;
        width: 4rem;
        position: absolute;
        border: .5rem solid transparent;
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
        -webkit-transform: translate(0, -50%);
        display: block;
    }
    /* 轮播图 */
    .im-swiper .swiper-slide:nth-of-type(1) .content {
        top: 19%;
    }
    .im-swiper .swiper-slide:nth-of-type(2) .content {
        top: 15%;
        right: 1%;
    }
    .im-swiper .swiper-slide:nth-of-type(3) .content {
        top: 22%;
        width: 72%;
    }
    .im-swiper .swiper-slide .content>div {
        font-size: 4rem;
    }
    .im-swiper .swiper-slide:nth-of-type(1) .content>p {
        font-size: 1.6rem;
    }
    .lunbo-dot {
        font-size: 2rem;
        margin: 0 1rem;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }
    .swiper-container-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        width: 67%;
    }
    .im-swiper {
        height: 50vh;
    }
    .swiper-tip {
        display: none;
    }
    /* 公共模块 */
    .im-block {
        padding: 7rem 0;
    }
    .index-s-title {
        width: 70%;
        margin: 0 auto;
        text-align: center;
    }
    .index-s-title>div {
        font-size: 3rem;
    }
    .index-s-title>p {
        font-size: 1.6rem;
        line-height: 4rem;
    }
    .im-name .im-n-body {
        font-size: 1.4rem;
    }
    .im-block>.content {
        width: 90%;
    }
    .im-name .im-n-body img {
        height: 8rem;
    }
    .im-business .index-s-title,
    .im-contact .index-s-title {
        margin: 0 auto;
        text-align: center;
        display: block;
    }
    /* 业务部分 */
    .ib-c-body {
        display: none;
    }
    .ib-c-body1 {
        display: block;
    }
    .ib-c-body1 li {
        margin-top: 2rem;
    }
    .ib-c-body1 li::before {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 6rem;
        height: 6rem;
        border-radius: 50%;
        border: 1px #e8c22f solid;
        background-size: 60%;
        background-repeat: no-repeat;
        background-position: center;
    }
    .ib-c-body1 li:first-of-type::before {
        background-image: url(../img/yw1.png);
    }
    .ib-c-body1 li:nth-of-type(2)::before {
        background-image: url(../img/yw2.png);
    }
    .ib-c-body1 li:nth-of-type(3)::before {
        background-image: url(../img/yw3.png);
    }
    .ib-c-body1 li:nth-of-type(4)::before {
        background-image: url(../img/yw4.png);
    }
    .ib-c-body1 li:nth-of-type(5)::before {
        background-image: url(../img/yw5.png);
    }
    .ib-c-body1 li:nth-of-type(6)::before {
        background-image: url(../img/yw6.png);
    }
    .ib-c-body1 li:nth-of-type(7)::before {
        background-image: url(../img/yw7.png);
    }
    .ib-c-body1 li:nth-of-type(8)::before {
        background-image: url(../img/yw8.png);
    }
    .ib-c-body1 li span {
        display: inline-block;
        vertical-align: middle;
        width: calc(97% - 6rem);
        margin-left: 3%;
        font-size: 1.6rem;
        color: #fff;
    }
    /* 专业团队 */
    .it-c-body {
        display: none;
    }
    .it-c-body1 {
        display: block;
    }
    .it-c-body .swiper-slide {
        padding: 1rem;
        overflow: hidden;
    }
    .it-c-body .swiper-slide div {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    .it-c-body .swiper-slide span {
        font-size: 1.4rem;
    }
    .imc-c-body .address {
        height: 40rem;
    }
    .imc-c-body p {
        font-size: 1.4rem;
    }
    /* 新闻中心 */
    .im-news li a {
        padding: 10px;
    }
    .im-news li a .left {
        width: 160px;
        height: 120px;
    }
    .im-news li a .right {
        width: calc(100% - 180px);
    }
    .im-news li a .right .title {
        white-space: nowrap;
        /* 规定文本是否折行 */
        overflow: hidden;
        /* 规定超出内容宽度的元素隐藏 */
        text-overflow: ellipsis;
    }
    .im-news li a .right .time {
        margin: 10px 0;
    }
    .im-news li a .right .detail {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        /* 将对象作为弹性伸缩盒子模型显示 */
        -webkit-line-clamp: 2;
        /* 控制最多显示几行 */
        -webkit-box-orient: vertical;
        /* 设置或检索伸缩盒对象的子元素的排列方式 */
    }
    /* 底部 */
    .im-foot {
        padding: 20px 0;
    }
    .im-foot .content {
        width: 90%;
        font-size: 1.4rem;
    }
}