/* 主布局 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

/*滚动条样式*/
::-webkit-scrollbar {
    /*滚动条整体样式*/
    /* width: 4px; */
    width: 0;
    /*高宽分别对应横竖滚动条的尺寸*/
    /* height: 4px; */
    height: 0;
}

::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 119, 255, 0.2);
    background: rgba(0, 119, 255, 0.2);
}

::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0, 119, 255, 0.2);
    border-radius: 0;
    background: rgba(0, 119, 255, 0.1);
}

/* 鼠标事件图片等比例放大 start */
.img-hover-scale {
    overflow: hidden;
}

.img-hover-scale img {
    transition: transform .3s;
    -moz-transition: -moz-transform .3s;
    -webkit-transition: -webkit-transform .3s;
    -o-transition: -o-transform .3s;

}

.img-hover-scale img:hover {
    z-index: 2;
    transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
}

/* 鼠标事件图片等比例放大 end */
/* body{
    width: 100vw;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
} */
#app {
    width: 100vw;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header,
footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

header {
    position: fixed;
    width: 100%;
    min-height: 84px;
    background: #fff;
    z-index: 999;
    border-bottom: 2px solid #F0F0F0;
    background: #FFFFFF;
}

main {
    width: 100%;
    display: flex;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: auto;
    /* overflow: auto; */
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 84px;
}

footer {
    width: 100%;
    box-sizing: border-box;
    min-height: 284px;
    z-index: 998;
}

/* header */
header {
    display: flex;
    justify-content: center;
    align-items: center;
}

header section {
    min-width: 1220px;
    max-width: 1220px;
    height: 84px;
    border-top: 4px solid #2974BA;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header section .header-left {
    height: 84px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

header section .header-left img {
    cursor: pointer;
}

header section .header-left img:first-of-type {
    width: 109.47px;
    height: 40px;
}

header section .header-left img:last-of-type {
    width: 126px;
    height: 36.79px;
    margin-left: 40px;
}

header section .header-right {
    height: 84px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

header section .header-right p {
    font-size: 14px;
    font-family: MicrosoftYaHei;
    color: #222222;
    line-height: 19px;
    margin-left: 18px;
    cursor: pointer;
    transition: color .3s;
}

header section .header-right .bl {
    color: #0077FF;
}

header section .header-right p:hover {
    color: #0077FF;
    transition: color .3s;
}

/* footer */
.footer {
    width: 100%;
    min-width: 1200px;
}

.footer .top {
    display: flex;
    height: 200px;
    border-top: 1px solid #ddd;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.footer .top .top-left {
    display: flex;
    width: 410px;
    height: 120px;
    border-right: 1px solid #ddd;
    justify-content: space-between;
}

.footer .top .top-left img {
    width: 95px;
    height: 35px;
    margin-top: 5px;
}

.footer .top .top-left div {
    display: flex;
    width: 170px;
    height: 120px;
    margin-right: 74px;
    flex-flow: wrap;
    justify-content: space-between;
}

.footer .top .top-left p {
    display: block;
    width: 85px;
    font-size: 14px;
    color: #222;
    line-height: 30px;
}

.footer .top .top-left p:nth-child(2n) {
    text-align: right;
}


.footer .top .top-right {
    display: flex;
    width: 790px;
    height: 120px;
    justify-content: space-between;
}

.footer .top .top-right .top-right-info {
    display: flex;
    width: 300px;
    height: 120px;
    margin-left: 66px;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer .top .top-right .top-right-info div {
    display: flex;
    width: 150px;
    height: 60px;
    flex-flow: column;
    justify-content: flex-start;
    padding-top: 5px;
    box-sizing: border-box;
}

.footer .top .top-right .top-right-info div p {
    font-size: 14px;
}

.footer .top .top-right .top-right-info div p:first-of-type {
    color: #444;
}

.footer .top .top-right .top-right-info div p:last-of-type {
    color: #888;
}

.footer .top .top-right .top-right-info div:nth-child(n+3) {
    justify-content: flex-end;
    padding-bottom: 5px;
}


.footer .top .top-right .top-right-code {
    display: flex;
    width: 352px;
    height: 120px;
    justify-content: space-between;
    align-items: center;
}

.footer .top .top-right .top-right-code div {
    display: flex;
    width: 104px;
    height: 120px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.footer .top .top-right .top-right-code div img {
    width: 104px;
    height: 104px;
}

.footer .top .top-right .top-right-code div p {
    font-size: 14px;
    color: #222;
}

.footer .bottom {
    display: flex;
    height: 80px;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    background: #282525;
    padding: 20px 0 19px 0;
    box-sizing: border-box;
    border-top: 4px solid #0077FF;
    border-bottom: 40px solid #282525;
}

.footer .bottom p {
    font-size: 14px;
    color: #828282;
}

.footer .bottom div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .bottom div img {
    width: 14px;
    height: 14px;
    margin-right: 10px;
}

/* main */
.main-header {
    width: 100%;
    min-width: 1220px;
    height: 462px;
    background: #0A2476;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-header .main-header-content {
    min-width: 1220px;
    max-width: 1220px;
    height: 362px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0A2476;
}

.main-header .main-header-content img {
    width: 850px;
    height: 362px;
}

.main-header .main-header-content section {
    width: 344px;
    height: 362px;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.main-header .main-header-content section h1 {
    font-size: 20px;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 27px;
    margin-top: 19px;
}

.main-header .main-header-content section p {
    font-size: 13px;
    font-family: MicrosoftYaHei;
    color: #FFFFFF;
    line-height: 27px;
    margin-top: 14px;
    /* 11 line */
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 11;
    line-clamp: 11;
    -webkit-box-orient: vertical;
    /*  */
}

/* 公共标题 */
.public-title {
    position: relative;
    font-size: 20px;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
    color: #222222;
    line-height: 27px;
    margin-top: 20px;
}

.fff {
    color: #fff;
}

.public-title::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background: #0077FF;
    bottom: -13px;
    left: 50%;
    right: 0;
    margin-left: -40px;
}

/* 展会亮点 */
.main-highlights {
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 99;
    padding-bottom: 42px;
    background-image: url("../img/eep-pc-highlights.png");
    background-repeat: no-repeat;
    background-position: center center;
    -moz-background-size: 1920px 389px;
    background-size: 1920px 389px;
}


.main-highlights div {
    min-width: 1220px;
    max-width: 1220px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.main-highlights div ul {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    justify-content: flex-start;
    margin-top: 27px;
}

.main-highlights div ul li {
    position: relative;
    width: 299px;
    height: 214px;
    margin-right: 8px;
    margin-bottom: 8px;
    list-style-type: none;
    cursor: pointer;
}

.main-highlights div ul li:nth-child(4n) {
    margin-right: 0;
}

.main-highlights div ul li img {
    position: absolute;
    width: 299px;
    height: 214px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 98;
}

.main-highlights div ul li h1 {
    position: absolute;
    font-size: 20px;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 27px;
    top: 127px;
    left: 0;
    right: 0;
    width: 299px;
    padding: 0 10px;
    text-align: center;
    z-index: 99;
}

.main-highlights div ul li p {
    position: absolute;
    font-size: 14px;
    font-family: MicrosoftYaHei;
    color: #FFFFFF;
    line-height: 19px;
    top: 159px;
    left: 0;
    right: 0;
    width: 299px;
    padding: 0 10px;
    text-align: center;
    z-index: 99;
}

/* 展会资讯 */
.main-media {
    width: 100%;
    background: #F0F6FF;
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.main-media section {
    min-width: 1220px;
    max-width: 1220px;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
}

.main-media section ul {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    justify-content: flex-start;
    margin-top: 32px;
}

.main-media section ul li {
    width: 600px;
    height: 170px;
    background: #FFFFFF;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 16px;
    box-sizing: border-box;
    margin-right: 20px;
    margin-bottom: 20px;
    list-style-type: none;
}

.main-media section ul li:nth-child(2n) {
    margin-right: 0;
}

.main-media section ul li .main-media-img {
    width: 210px;
    height: 140px;
    cursor: pointer;
}

.main-media section ul li .main-media-img img {
    width: 210px;
    height: 140px;
}

.main-media section ul li .main-media-listinfo {
    width: 344px;
    height: 140px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.main-media section ul li .main-media-listinfo h1 {
    font-size: 18px;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
    color: #222222;
    line-height: 34px;
    /* 2 line */
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    /*  */
    transition: color .3s;
    cursor: pointer;
}

.main-media section ul li .main-media-listinfo h1:hover {
    color: #0077FF;
    transition: color .3s;
}

.main-media section ul li .main-media-listinfo .main-media-listinfo-bo {
    width: 344px;
    height: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-media section ul li .main-media-listinfo .main-media-listinfo-bo .main-media-listinfo-bo-name {
    height: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.main-media section ul li .main-media-listinfo .main-media-listinfo-bo .main-media-listinfo-bo-name img {
    width: 20px;
    height: 20px;
}

.main-media section ul li .main-media-listinfo .main-media-listinfo-bo .main-media-listinfo-bo-name p {
    font-size: 12px;
    font-family: MicrosoftYaHei;
    color: #A7B1C2;
    line-height: 16px;
    margin-left: 5px;
}

.main-media section ul li .main-media-listinfo .main-media-listinfo-bo .main-media-listinfo-bo-time {
    height: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.main-media section ul li .main-media-listinfo .main-media-listinfo-bo .main-media-listinfo-bo-time img {
    width: 11px;
    height: 11px;
}

.main-media section ul li .main-media-listinfo .main-media-listinfo-bo .main-media-listinfo-bo-time p {
    font-size: 12px;
    font-family: MicrosoftYaHei;
    color: #A7B1C2;
    line-height: 16px;
    margin-left: 3px;
}

.main-media section button {
    width: 210px;
    height: 48px;
    border: 1px solid #0077FF;
    font-size: 18px;
    font-family: MicrosoftYaHei;
    color: #0077FF;
    line-height: 24px;
    background-color: #F0F6FF;
    cursor: pointer;
    outline: none;
    margin-top: 10px;
    margin-bottom: 50px;
}

/* 会议日程 */
.main-schedule {
    width: 100%;
    padding-top: 10px;
    background: #fff;
    display: flex;
    flex-flow: column;
    align-items: center;
    background-image: url("../img/eep-pc-schedule-bg.png");
    background-repeat: no-repeat;
    background-position: 100% 0;
    -moz-background-size: 304px 240px;
    background-size: 304px 240px;
}

.main-schedule section {
    min-width: 1220px;
    max-width: 1220px;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
}

.main-schedule section ul {
    list-style-type: none;
    margin-top: 32px;
    width: 100%;
    display: flex;
    flex-flow: wrap;
    justify-content: flex-start;
}

.main-schedule section ul li {
    width: 395px;
    height: 315px;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-right: 17px;
    margin-bottom: 45px;
}

.main-schedule section ul li a {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
}

.main-schedule section ul li:nth-child(3n) {
    margin-right: 0;
}

.main-schedule section ul li div {
    width: 395px;
    height: 221px;
    cursor: pointer;
}

.main-schedule section ul li div img {
    width: 395px;
    height: 221px;
}

.main-schedule section ul li h1 {
    margin-top: 15px;
    font-size: 20px;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 27px;
    cursor: pointer;
}

.main-schedule section ul li p {
    margin-top: 10px;
    font-size: 18px;
    font-family: MicrosoftYaHei;
    color: #FFFFFF;
    line-height: 24px;
}

.main-schedule section .main-schedule-btn {
    width: 210px;
    height: 48px;
    border: 1px solid #0077FF;
    font-size: 18px;
    font-family: MicrosoftYaHei;
    color: #0077FF;
    line-height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

/* 参展企业 */
.main-company {
    width: 100%;
    padding-top: 10px;
    min-width: 1220px;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    background-image: url("../img/eep-company-bg.png");
    background-repeat: no-repeat;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    background-color: #103CC7;
    padding-bottom: 70px;
}

.main-company ul {
    margin-top: 39px;
    width: 1218px;
    display: flex;
    flex-flow: wrap;
    justify-content: flex-start;
}

.main-company ul li {
    width: 162px;
    height: 68px;
    margin-right: 14px;
    margin-bottom: 14px;
    list-style-type: none;
    cursor: pointer;
}

.main-company ul li:nth-child(7n) {
    margin-right: 0;
}

.main-company ul li img {
    width: 162px;
    height: 68px;
}

.main-company p {
    margin-top: 20px;
    font-size: 16px;
    font-family: MicrosoftYaHei;
    color: #FFFFFF;
    line-height: 21px;
}

.main-company button {
    margin-top: 26px;
    width: 210px;
    height: 48px;
    border: 1px solid #FFFFFF;
    font-size: 18px;
    font-family: MicrosoftYaHei;
    color: #FFFFFF;
    line-height: 24px;
    cursor: pointer;
    outline: none;
    background-color: rgba(0, 0, 0, 0);
}

/* map */
.main-map {
    width: 100%;
    min-width: 1220px;
    height: 508px;
    background-color: #F0F6FF;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 183px;
}

.main-map .main-map-conetnt {
    position: relative;
    min-width: 1220px;
    max-width: 1220px;
    height: 363px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 55px;
}

.main-map .main-map-conetnt img {
    position: absolute;
    width: 782px;
    height: 508px;
    right: 0;
    bottom: 0;
}

.main-map .main-map-conetnt .main-map-conetnt-addr {
    display: flex;
    width: 437px;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.main-map .main-map-conetnt .main-map-conetnt-addr h1 {
    font-size: 26px;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
    color: #222222;
    line-height: 35px;
    margin-bottom: 14px;
}

.main-map .main-map-conetnt .main-map-conetnt-addr p {
    font-size: 16px;
    font-family: MicrosoftYaHei;
    color: #222222;
    line-height: 30px;
}

.main-map .main-map-conetnt .main-map-conetnt-mob {
    display: flex;
    width: 437px;
    height: 171px;
    flex-flow: wrap;
    justify-content: flex-start;
}

.main-map .main-map-conetnt .main-map-conetnt-mob h1 {
    display: block;
    width: 437px;
    font-size: 26px;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
    color: #222222;
    line-height: 35px;
}

.main-map .main-map-conetnt .main-map-conetnt-mob section {
    margin-right: 45px;
}

.main-map .main-map-conetnt .main-map-conetnt-mob section p {
    font-size: 14px;
    font-family: MicrosoftYaHei;
    color: #222222;
    line-height: 30px;
}

.main-map .main-map-conetnt .main-map-conetnt-mob section p:first-of-type {
    font-family: MicrosoftYaHei-Bold;
    font-weight: bold;
}

/* 参会指南 */
.main-companion {
    width: 100%;
    min-width: 1220px;
    background-color: #fff;
    background-image: url("../img/eep-companion-bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    -moz-background-size: 1920px 683px;
    background-size: 1920px 683px;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 30px;
}

.main-companion .main-companion-p {
    font-size: 14px;
    font-family: MicrosoftYaHei;
    color: #999999;
    line-height: 22px;
    margin: 15px 0 50px 0;
}

.main-companion .main-companion-content {
    margin-top: 23px;
}

.main-companion .main-companion-content ul {
    max-width: 1221px;
    min-width: 1221px;
    height: 88px;
    display: flex;
    justify-content: flex-start;
}

.main-companion .main-companion-content ul li {
    width: 405px;
    height: 88px;
    list-style-type: none;
    background-color: #403E7C;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 3px;
    font-size: 22px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 30px;
    cursor: pointer;
}

.main-companion .main-companion-content ul li:last-of-type {
    margin-right: 0;
}

.main-companion .main-companion-content ul .action {
    background: linear-gradient(to right, #5479FD, #3535E6);
}

.main-companion .main-companion-content .main-companion-content-plan {
    width: 1221px;
    background-color: #25254B;
}

/* plan-a */
.main-companion .main-companion-content .plan-a {
    display: flex;
    width: 1221px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    padding: 30px 40px 94px 40px;
}

.main-companion .main-companion-content .plan-a p {
    font-size: 16px;
    font-family: MicrosoftYaHei;
    color: #FFFFFF;
    line-height: 30px;
}

.main-companion .main-companion-content .plan-a div {
    margin-top: 30px;
    width: 1140px;
    height: 361px;
    background: linear-gradient(270deg, rgba(38, 38, 71, 0.32) 0%, #37376A 100%);
    border-radius: 6px;
    display: flex;
    /* flex-flow: column; */
    justify-content: center;
    align-items: center;
}

.main-companion .main-companion-content .plan-a div section{
    width: 300px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.main-companion .main-companion-content .plan-a div section img {
    width: 185px;
    height: 185px;
    margin-top: 41px;
    margin-bottom: 20px;
}

.main-companion .main-companion-content .plan-a div section p {
    font-size: 16px;
    font-family: MicrosoftYaHei;
    color: #FFFFFF;
    line-height: 30px;
}

/* plan-b */
.main-companion .main-companion-content .plan-b {
    display: flex;
    width: 1221px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 30px 40px 50px 40px;
}

.main-companion .main-companion-content .plan-b h1 {
    font-size: 20px;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
    color: #B3F5FF;
    line-height: 27px;
    margin-bottom: 10px;
}

.main-companion .main-companion-content .plan-b .h1top {
    padding-top: 37px;
}

.main-companion .main-companion-content .plan-b .plan-b-block {
    display: block;
    width: 1140px;
    height: 35px;
    background: linear-gradient(270deg, rgba(38, 38, 71, 0.32) 0%, #37376A 100%);
    margin-bottom: 8px;
    font-size: 16px;
    font-family: MicrosoftYaHei;
    color: #B3F5FF;
    line-height: 35px;
    padding-left: 20px;

}

.main-companion .main-companion-content .plan-b .plan-b-block span {
    color: #fff;
}

.main-companion .main-companion-content .plan-b .plan-b-text {
    margin-left: 20px;
    font-size: 15px;
    font-family: MicrosoftYaHei;
    color: #FFFFFF;
    line-height: 30px;
}

.main-companion .main-companion-content .plan-b .bo {
    margin-bottom: 10px;
}

/* plan-c */
.main-companion .main-companion-content .plan-c {
    display: flex;
    width: 1221px;
    justify-content: space-between;
    align-items: flex-start;
    padding: 38px 44px 35px 40px;
}

.main-companion .main-companion-content .plan-c section {
    width: 559px;
    height: 641px;
    background: linear-gradient(270deg, rgba(38, 38, 71, 0.32) 0%, #37376A 100%);
    padding: 18px 10px 0 20px;
}

.main-companion .main-companion-content .plan-c .plan-c-left h1 {
    font-size: 20px;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
    color: #B3F5FF;
    line-height: 27px;
}

.main-companion .main-companion-content .plan-c .plan-c-left .plan-c-left-h2 {
    font-size: 16px;
    font-family: MicrosoftYaHei;
    color: #B3F5FF;
    line-height: 30px;
    margin-top: 15px;
}

.main-companion .main-companion-content .plan-c .plan-c-left .plan-c-left-h2:last-of-type {
    margin-top: 30px;
}

.main-companion .main-companion-content .plan-c .plan-c-left .plan-c-left-text {
    font-size: 16px;
    font-family: MicrosoftYaHei;
    color: #B3F5FF;
    line-height: 30px;
    margin: 2px 0 5px 0;
}

.main-companion .main-companion-content .plan-c .plan-c-left .plan-c-left-nof {
    font-size: 15px;
    font-family: MicrosoftYaHei;
    color: #FFFFFF;
    line-height: 30px;
}

.main-companion .main-companion-content .plan-c .plan-c-left div {
    width: 100%;
    height: 297px;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
}

.main-companion .main-companion-content .plan-c .plan-c-left div img {
    width: 31px;
    height: 40px;
    margin-top: 74px;
    margin-bottom: 10px;
}

.main-companion .main-companion-content .plan-c .plan-c-left div p {
    font-size: 15px;
    font-family: MicrosoftYaHei;
    color: #FFFFFF;
    line-height: 30px;
}

.main-companion .main-companion-content .plan-c .plan-c-right {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
}

.main-companion .main-companion-content .plan-c .plan-c-right h1 {
    width: 100%;
    font-size: 20px;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
    color: #B3F5FF;
    line-height: 27px;
    text-align: left;

}

.main-companion .main-companion-content .plan-c .plan-c-right img {
    width: 31px;
    height: 40px;
    margin-top: 238px;
}

.main-companion .main-companion-content .plan-c .plan-c-right p {
    font-size: 14px;
    font-family: MicrosoftYaHei;
    color: #FFFFFF;
    line-height: 19px;
    margin-top: 5px;
}

/* fixed */
.main-fixed {
    position: fixed;
    top: 66%;
    right: 0;
    transform: translate(0%, -50%);
    width: 120px;
    z-index: 999;
    font-size: 0;
}

.main-fixed h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 30px;
    font-size: 12px;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 16px;
    background: #1D00C5;
}

.main-fixed h1:first-of-type {
    background: linear-gradient(135deg, transparent 5px, #0E8AEB 0) top left,
        linear-gradient(-135deg, transparent 0px, #0E8AEB 0) top right,
        linear-gradient(-45deg, transparent 0px, #0E8AEB 0) bottom right,
        linear-gradient(45deg, transparent 0px, #0E8AEB 0) bottom left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
}

.main-fixed div {
    width: 120px;
    height: 123px;
    background: #1D00C5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-fixed div img {
    width: 91px;
    height: 91px;
}

.main-fixed h1:last-of-type {
    background-color: #22AEBE;
}