.padding {
    padding: 0 calc(360 / 1920 * 100%);
    box-sizing: border-box;
}

.public-title {
    width: 480px;
    height: 30px;
    margin: 0 auto;
    display: flex;
}

.public-title .t-line {
    width: 120px;
    height: 4px;
    margin: 13px 0;
}

.public-title .t-line1 {
    background-image: linear-gradient(to right, rgba(255, 0, 0, 0), #0455DC);
}

.public-title .t-line2 {
    background-image: linear-gradient(to left, rgba(255, 0, 0, 0), #0455DC);
}

.public-title .t-txt {
    width: 120px;
    line-height: 30px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: #333;
}

.public-title .t-circle {
    width: 8px;
    height: 8px;
    background-color: #0455DC;
    border-radius: 50%;
    margin: 11px 27px;
}

.public-see-more {
    width: 140px;
    height: 42px;
    margin: 0 auto;
    background-color: #0455DC;
    padding: 0 10px;
    box-sizing: border-box;
}

.public-see-more a {
    display: flex;
    align-items: center;
}

.public-see-more .s-txt {
    line-height: 42px;
    font-size: 16px;
    color: #fff;
    margin-right: 4px;
    transition: all .2s;
}

.public-see-more .s-img {
    width: 42px;
    height: 6px;
}

.public-see-more:hover {
    cursor: pointer;
}

.public-see-more:hover .s-txt {
    margin-right: 14px;
}

#bigImgBox {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

#bigImgBox .box {
    width: 40%;
    margin: 200px auto;
}

#bigImgBox .box .span {
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    margin-bottom: 20px;
    font-size: 14px;
}

#bigImgBox .box #imgShow {
    width: 100%;
}

.html-body-overflow {
    overflow: hidden;
}

body {
    padding-top: 100px;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100px;
    z-index: 11;
    background-color: #EEE;
}

.header .header-heart {
    position: relative;
}

.header .header-heart .logo {
    width: 97px;
    height: 70px;
    margin: 15px 20px 15px 0;
}

.header .header-heart .home {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .header-heart .home .nav {
    flex: auto;
    display: flex;
    justify-content: space-around;
    height: 100px;
}

.header .header-heart .home .nav li .nav-li {
    font-size: 16px;
    height: 100px;
    font-weight: 400;
    padding: 39px 0;
    box-sizing: border-box;
}

.header .header-heart .home .nav li .show {
    position: absolute;
    width: 100vw;
    height: 50px;
    background-color: #1663D1;
    color: #fff;
    display: flex;
    justify-content: start;
    z-index: -1;
    left: 0;
    top: 80px;
    opacity: 0;
    transition: all .2s;
    padding: 0 calc(360 / 1920 * 100%) 0 calc(360 / 1920 * 100% + 117px);
    box-sizing: border-box;
}

.header .header-heart .home .nav li .show .s-heart {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.header .header-heart .home .nav li .show .s-heart a {
    padding: 0 20px;
    box-sizing: border-box;
    border-right: 1px solid #ddd;
    cursor: pointer;
}

.header .header-heart .home .nav li .show .s-heart a:last-child {
    border-right: 0;
}

.header .header-heart .home .nav li .show .s-heart a:hover {
    color: #ccc;
}

.header .header-heart .home .nav li:hover .nav-li {
    color: #0455DC;
    border-bottom: 3px solid #0455DC;
}

.header .header-heart .home .nav li:hover .show {
    top: 100px;
    z-index: 1;
    opacity: 1;
}

.header .header-heart .home .nav li.h-active .nav-li {
    color: #0455DC;
    border-bottom: 3px solid #0455DC;
}

.header .header-heart .home .line {
    flex: .2;
}

.header .header-heart .home .line div {
    width: 1px;
    height: 24px;
    margin: 38px auto;
    background-color: #ccc;
}

.header .header-heart .home .search {
    flex: .2;
}

.header .header-heart .home .search .search-img {
    width: 20px;
    height: 20px;
    margin: 40px auto;
    background: url(../img/search.png);
}

.header .header-heart .home .search .search-img:hover {
    background: url(../img/search2.png);
    cursor: pointer;
}

.header .header-heart .home .search .show {
    position: absolute;
    width: 100vw;
    height: 50px;
    background-color: #1663D1;
    display: flex;
    justify-content: start;
    z-index: -1;
    left: 0;
    top: 80px;
    opacity: 0;
    transition: all .2s;
    padding: 5px calc(360 / 1920 * 100%) 5px calc(360 / 1920 * 100% + 250px);
    box-sizing: border-box;
}

.header .header-heart .home .search .show input {
    background-color: #fff;
    height: 40px;
    border-radius: 4px;
    padding: 0 10px;
    box-sizing: border-box;
    flex: auto;
}

.header .header-heart .home .search .show button {
    background-color: #1663D1;
    color: #fff;
    border: 1px solid #fff;
    width: 50px;
    height: 40px;
    margin-left: 5px;
}

.header .header-heart .home .search .search-show {
    top: 100px;
    z-index: 1;
    opacity: 1;
}

.header .header-heart .home .lang {
    flex: .4;
}

.header .header-heart .home .lang div {
    width: 90px;
    height: 24px;
    border: 1px solid #c2c2c2;
    border-radius: 12px;
    margin: 37px auto;
    position: relative;
}

.header .header-heart .home .lang div .EN,
.header .header-heart .home .lang div .CN {
    position: absolute;
    width: 50px;
    height: 24px;
    line-height: 24px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    color: #999;
    border-radius: 10px;
}

.header .header-heart .home .lang div .EN {
    left: 0;
}

.header .header-heart .home .lang div .CN {
    right: 0;
}

.header .header-heart .home .lang div .l-active {
    background-color: #0455DC;
    color: #fff;
}

.header .header-heart .home .hamburger-btn {
    display: none;
}

.header .header-heart .home .hamburger-btn .btn {
    font-size: 30px;
    color: #0455DC;
    cursor: pointer;
}

.header .header-heart .home .hamburger-btn .btn2 {
    display: none;
}

.header .hamburger {
    width: 100%;
    line-height: 40px;
    display: none;
    background: rgba(0, 0, 0, 0.4);
}

.header .hamburger .ham {
    width: 100%;
}

.header .hamburger .ham li {
    border-bottom: 1px solid #ddd;
    background-color: #0455DC;
}

.header .hamburger .ham li .ham-top {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.header .hamburger .ham li .ham-top .ham-li {
    flex: auto;
    color: #fff;
}

.header .hamburger .ham li .ham-top .ham-li:hover {
    color: #ddd;
}

.header .hamburger .ham li .ham-top .btn {
    color: #fff;
    cursor: pointer;
    width: 30px;
    text-align: right;
    border-left: 1px solid #fff;
}

.header .hamburger .ham li .ham-top .btn2 {
    display: none;
}

.header .hamburger .ham li .ham-show {
    line-height: 35px;
    display: none;
    color: #fff;
    background-color: #478FF6;
    padding: 0 20px;
    box-sizing: border-box;
}

.header .hamburger .ham li .ham-show a {
    border-bottom: 1px solid #ddd;
    padding: 0 calc(380 / 1920 * 100%);
    box-sizing: border-box;
}

.header .hamburger .ham li .ham-show a:hover {
    color: #ddd;
}

.header .hamburger .ham li .ham-show a:last-child {
    border-bottom: 0;
}

.header .hamburger .mask {
    width: 100vw;
    height: 100vh;
}

.index-main {
    width: 100%;
}

.index-main .banner {
    width: 100%;
    position: relative;
}

.index-main .banner .swiper-tab {
    position: absolute;
    width: 276px;
    bottom: 36px;
    left: 50%;
    margin-left: -138px;
}

.index-main .banner .swiper-tab .swiper-slide-thumb-active .img {
    border: 2px solid #fff;
}

.index-main .banner .swiper-tab .swiper-slide {
    width: 92px;
}

.index-main .banner .swiper-tab .swiper-slide .img {
    width: 72px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0;
}

.index-main .product-display {
    padding: 90px 0;
    box-sizing: border-box;
    background-color: #F8F9FB;
    position: relative;
    width: 100%;
}

.index-main .product-display .swiper3 {
    width: 100%;
    padding: 58px 0;
    box-sizing: border-box;
}

.index-main .product-display .swiper3 ul {
    width: 100%;
}

.index-main .product-display .swiper3 ul li {
    width: 22%;
    margin-right: 4%;
}

.index-main .product-display .swiper3 ul li:last-child {
    margin-right: 0;
}

.index-main .product-display .swiper3 ul li .bg-img {
    width: 100%;
    height: calc(450 / 1920 * 100vw);
    background-color: #fff;
    transition: all .3s;
}

.index-main .product-display .swiper3 ul li .bg-img .img {
    width: 34%;
    height: calc(300 / 1920 * 100vw);
    margin: 0 auto;
    padding-top: calc(75 / 1920 * 100vw);
    transition: all .3s;
}

.index-main .product-display .swiper3 ul li .txt {
    padding-top: 20px;
    line-height: 20px;
    font-size: 16px;
    text-align: left;
    color: #333;
}

.index-main .product-display .swiper3 ul li:hover .bg-img {
    box-shadow: 0px 4px 9.4px 0.6px rgba(0, 0, 0, 0.15);
}

.index-main .product-display .swiper3 ul li:hover .bg-img .img {
    transform: scale(1.2);
}

.index-main .product-display .swiper3 ul li:hover .txt {
    color: #0455DC;
}

.index-main .product-display .swiper-bot {
    width: calc(600 / 1920 * 100%);
    height: 8px;
    position: absolute;
    left: 50%;
    margin-left: calc(-300 / 1920 * 100%);
    bottom: 60px;
    display: flex;
    justify-content: space-around;
}

.index-main .product-display .swiper-bot .swiper-pagination {
    width: 100px;
    margin-top: -8px;
    z-index: 1;
}

.index-main .product-display .swiper-bot .swiper-pagination .swiper-pagination-bullet {
    background-color: #a0a0a0;
    margin: 0 4px;
}

.index-main .product-display .swiper-bot .swiper-pagination .swiper-pagination-bullet-active {
    width: 36px;
    height: 8px;
    border-radius: 8px;
    background-color: #0455DC;
}

.index-main .product-display .swiper-bot .swiper-pagination .swiper-pagination-bullet:focus {
    outline: none;
}

.index-main .product-display .swiper-bot .swiper-pagination .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: auto;
}

.index-main .product-display .swiper-bot .swiper-prev,
.index-main .product-display .swiper-bot .swiper-next {
    width: 68px;
    height: 6px;
    cursor: pointer;
}

.index-main .product-display .swiper-bot .swiper-prev {
    background: url("../img/img-left02.png");
}

.index-main .product-display .swiper-bot .swiper-prev:hover {
    background: url("../img/img-left01.png");
}

.index-main .product-display .swiper-bot .swiper-next {
    background: url("../img/img-right02.png");
}

.index-main .product-display .swiper-bot .swiper-next:hover {
    background: url("../img/img-right01.png");
}

.index-main .product-display .swiper-bot .swiper-prev:focus,
.index-main .product-display .swiper-bot .swiper-next:focus {
    outline: none;
}

.index-main .about-us {
    width: 100%;
    background: url("../img/me-bg2.png") no-repeat center center;
    background-size: cover;
    padding: 90px 0;
    box-sizing: border-box;
}

.index-main .about-us .heart {
    padding: 0 calc(120 / 1920 * 100%);
    box-sizing: border-box;
}

.index-main .about-us .heart .public-title .t-line1 {
    background-image: linear-gradient(to right, rgba(255, 0, 0, 0), #fff);
}

.index-main .about-us .heart .public-title .t-line2 {
    background-image: linear-gradient(to left, rgba(255, 0, 0, 0), #fff);
}

.index-main .about-us .heart .public-title .t-txt {
    color: #fff;
}

.index-main .about-us .heart .public-title .t-circle {
    background-color: #fff;
}

.index-main .about-us .heart .about-top {
    width: 100%;
}

.index-main .about-us .heart .about-top ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 60px 0 20px 0;
    box-sizing: border-box;
}

.index-main .about-us .heart .about-top ul li {
    width: 33%;
    background-color: #fff;
    padding: 32px;
    padding-bottom: 0;
    box-sizing: border-box;
    transition: all .2s;
}

.index-main .about-us .heart .about-top ul li .tlt {
    line-height: 40px;
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    color: #0455DC;
    padding-top: 40px;
    transition: all .2s;
}

.index-main .about-us .heart .about-top ul li .txt {
    font-size: 14px;
    text-align: justifyLeft;
    color: #333;
    line-height: 24px;
    transition: all .2s;
}

.index-main .about-us .heart .about-top ul li .add {
    font-size: 30px;
    color: #fff;
    opacity: 0;
    transition: all .2s;
}

.index-main .about-us .heart .about-top ul li:hover {
    cursor: pointer;
    background-color: #0455DC;
}

.index-main .about-us .heart .about-top ul li:hover .tlt {
    color: #fff;
    padding-top: 0px;
}

.index-main .about-us .heart .about-top ul li:hover .txt {
    color: #fff;
}

.index-main .about-us .heart .about-top ul li:hover .add {
    font-size: 30px;
    opacity: 1;
}

.index-main .about-us .heart .about-media {
    width: 100%;
}

.index-main .about-us .heart .about-media ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}

.index-main .about-us .heart .about-media ul li {
    width: 31%;
    background-color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    border: 4px solid #EEE;
}

.index-main .about-us .heart .about-media ul li img {
    width: 100%;
}

.index-main .about-us .heart .about-media ul li .v-media1 {
    position: absolute;
    width: 60px;
    height: 60px;
    left: 50%;
    top: 50%;
    margin-left: -30px;
    margin-top: -30px;
    cursor: pointer;
}

.index-main .about-us .heart .about-media ul li .video-popup {
    position: fixed;
    display: none;
    z-index: 11;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /*padding: 200px 0;*/
    padding-bottom:200px ;
}

.index-main .about-us .heart .about-media ul li .video-popup .vid {
    width: calc(800 / 1920 * 100vw);
    top: 200px;
    margin: 0 auto;
}

.index-main .about-us .heart .about-media ul li .video-popup .vid .vioClose {
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #aaa;
    font-size: 25px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    /*margin-left: 100%;*/
    margin-left: 80%;
    margin-bottom: 20px;
    cursor: pointer;
}

.index-main .about-us .heart .about-media ul li .video-popup .vid video {
    /*width: 100%;*/
    width: 60%;
    margin-left: 20%;
}

.index-main .product-details {
    padding: 90px 0;
}

.index-main .product-details .heart {
    width: 100%;
}

.index-main .product-details .heart ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 90px 0;
}

.index-main .product-details .heart ul li {
    width: 31%;
    background-color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    border: 4px solid #EEE;
}

.index-main .product-details .heart ul li img {
    width: 100%;
}

.index-main .product-details .heart ul li .v-media {
    position: absolute;
    width: 60px;
    height: 60px;
    left: 50%;
    top: 50%;
    margin-left: -30px;
    margin-top: -30px;
    cursor: pointer;
}

.index-main .product-details .heart ul li .video-popup {
    position: fixed;
    display: none;
    z-index: 11;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /*padding: 200px 0;*/
    padding-bottom: 200px;
}

.index-main .product-details .heart ul li .video-popup .vid {
    width: calc(800 / 1920 * 100vw);
    top: 200px;
    margin: 0 auto;
}

.index-main .product-details .heart ul li .video-popup .vid .vioClose {
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #aaa;
    font-size: 25px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    /*margin-left: 100%;*/
    margin-left: 80%;
    margin-bottom: 20px;
    cursor: pointer;
}

.index-main .product-details .heart ul li .video-popup .vid video {
    /*width: 100%;*/
    width: 60%;
    margin-left: 20%;
}

.index-main .news-center {
    padding: 90px 0;
    background-color: #F8F9FB;
}

.index-main .news-center .heart {
    width: 100%;
}

.index-main .news-center .heart ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 90px 0;
}

.index-main .news-center .heart ul li {
    width: 31%;
}

.index-main .news-center .heart ul li .n-img {
    width: 100%;
    position: relative;
}

.index-main .news-center .heart ul li .n-img .img-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0);
    transition: all .2s;
}

.index-main .news-center .heart ul li .n-img .img-mask:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.index-main .news-center .heart ul li .n-tlt {
    font-size: 16px;
    text-align: left;
    color: #333;
    line-height: 24px;
    padding-top: 20px;
    transition: all .2s;
}

.index-main .news-center .heart ul li .n-tlt:hover {
    color: #0455DC;
}

.index-main .news-center .heart ul li .line {
    width: 32px;
    height: 3px;
    background-color: #0455DC;
    margin: 20px 0;
}

.index-main .news-center .heart ul li .n-txt {
    font-size: 14px;
    text-align: justifyLeft;
    color: #666;
    line-height: 28px;
    transition: all .2s;
}

.index-main .news-center .heart ul li .n-txt:hover {
    color: #0455DC;
}

.index-main .service-support .heart {
    padding: 90px calc(360 / 1920 * 100%);
    box-sizing: border-box;
    width: 100%;
    position: relative;
}

.index-main .service-support .heart ul {
    width: 100%;
    display: flex;
    padding-top: 90px;
}

.index-main .service-support .heart ul li {
    flex: 1;
}

.index-main .service-support .heart ul li .box .s-img {
    display: flex;
    justify-content: center;
    height: 80px;
}

.index-main .service-support .heart ul li .box .s-tlt {
    line-height: 25px;
    font-size: 24px;
    text-align: center;
    color: #0455DC;
    margin: 20px 0;
}

.index-main .service-support .heart ul li .box .s-txt {
    line-height: 25px;
    font-size: 16px;
    text-align: center;
    color: #333;
}

.index-main .service-support .heart .links {
    position: absolute;
    bottom: 10px;
    display: flex;
    height: 14px;
}

.index-main .service-support .heart .links .txt {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    line-height: 14px;
}

.index-main .service-support .heart .links .l-name {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    padding: 0 8px;
    border-right: 2px solid #ccc;
    line-height: 14px;
}

.index-main .service-support .heart .links .l-name:hover {
    color: #0455DC;
}

.sidebar {
    position: fixed;
    top: 30%;
    right: 24px;
    z-index: 10;
}

.sidebar .on-con .on-con-heart {
    min-width: 60px;
    border-radius: 6px;
    box-shadow: 0px 2px 6px 3px rgba(0, 0, 0, 0.08);
    padding: 25px 12px 12px 12px;
    box-sizing: border-box;
    margin-bottom: 38px;
    background-color: #fff;
    position: relative;
}

.sidebar .on-con .on-con-heart .context .con-img {
    display: flex;
    justify-content: center;
}

.sidebar .on-con .on-con-heart .context .txt {
    font-size: 14px;
    text-align: center;
}

.sidebar .on-con .on-con-heart .con-small {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
}

.sidebar .on-con .on-con-heart .con-small .onConMinimize,
.sidebar .on-con .on-con-heart .con-small .onConClose {
    top: 0;
    left: -40px;
    width: 20px;
    height: 20px;
    background-color: #0455DC;
    color: #fff;
    text-align: center;
    line-height: 20px;
    font-size: 16px;
    cursor: pointer;
}

.sidebar .on-con .on-con-heart .con-small .onConMinimize {
    border-right: 1px solid #fff;
    font-size: 20px;
}

.sidebar .on-con .con-img1 {
    margin-left: 76px;
    margin-bottom: 38px;
    width: 44px;
    height: 44px;
    background-color: #fff;
    padding: 10px;
    box-sizing: border-box;
    cursor: pointer;
    display: none;
    border-radius: 5px;
    box-shadow: 0px 2px 6px 3px rgba(0, 0, 0, 0.08);
}

.sidebar .on-com .on-com-heart {
    min-width: 160px;
    border-radius: 6px;
    box-shadow: 0px 2px 6px 3px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    position: relative;
}

.sidebar .on-com .on-com-heart .com-tlt {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    line-height: 45px;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #fff;
    background-color: #0455DC;
    padding: 15px 6px 0;
    box-sizing: border-box;
}

.sidebar .on-com .on-com-heart .com-qq a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.sidebar .on-com .on-com-heart .com-qq a .qq-txt {
    line-height: 35px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin-left: 15px;
}

.sidebar .on-com .on-com-heart .s-bot {
    width: 170px;
    padding: 10px 8px;
    box-sizing: border-box;
}

.sidebar .on-com .on-com-heart .s-bot .bot-txt {
    line-height: 20px;
    font-size: 12px;
    color: #333;
}

.sidebar .on-com .on-com-heart .s-bot .bot-txt span {
    color: #0455DC;
}

.sidebar .on-com .on-com-heart .s-bot .bot-txt .bot-img {
    display: flex;
    justify-content: center;
}

.sidebar .on-com .on-com-heart .s-bot .bot-txt .bot-img img {
    width: 100%;
    height: 100%;
}

.sidebar .on-com .on-com-heart .com-small {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
}

.sidebar .on-com .on-com-heart .com-small .onComMinimize,
.sidebar .on-com .on-com-heart .com-small .onComClose {
    top: 0;
    left: -40px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    color: #0455DC;
    text-align: center;
    line-height: 20px;
    font-size: 16px;
    cursor: pointer;
}

.sidebar .on-com .on-com-heart .com-small .onComMinimize {
    border-right: 1px solid #0455DC;
    font-size: 20px;
}

.sidebar .on-com .com-img1 {
    margin-left: 76px;
    margin-bottom: 38px;
    width: 44px;
    height: 44px;
    background-color: #fff;
    padding: 10px;
    box-sizing: border-box;
    cursor: pointer;
    display: none;
    border-radius: 5px;
    box-shadow: 0px 2px 6px 3px rgba(0, 0, 0, 0.08);
}

.footer {
    padding-top: 80px;
    background-color: #eee;
}

.footer .heart {
    width: 100%;
}

.footer .heart .o-list {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
}

.footer .heart .o-list .o-li:nth-child(1) {
    flex: 1;
}

.footer .heart .o-list .o-li:nth-child(2) {
    flex: 1;
}

.footer .heart .o-list .o-li:nth-child(3) {
    flex: 3;
}

.footer .heart .o-list .o-li:nth-child(3) ul li:hover {
    color: #666;
}

.footer .heart .o-list .o-li:nth-child(4) {
    flex: 1;
}

.footer .heart .o-list .o-li:nth-child(5) {
    flex: 2;
}

.footer .heart .o-list .o-li .tlt {
    font-size: 16px;
    font-family: Microsoft YaHei Regular, Microsoft YaHei Regular-Regular;
    text-align: left;
    color: #333;
    line-height: 24px;
    margin-bottom: 30px;
}

.footer .heart .o-list .o-li .tlt:hover {
    color: #0455DC;
}

.footer .heart .o-list .o-li ul li {
    font-size: 14px;
    text-align: left;
    color: #666;
    line-height: 30px;
}

.footer .heart .o-list .o-li ul li:hover {
    color: #0455DC;
}

.footer .heart .o-list .o-li .code {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.footer .heart .o-list .o-li .code li {
    width: 45%;
}

.footer .heart .o-list .o-li .code li .code-txt {
    width: 100%;
    text-align: center;
}

.footer .heart .o-list .o-li .goto-name {
    display: flex;
    padding-top: 20px;
}

.footer .heart .o-list .o-li .goto-name .g-name {
    margin-right: 20px;
}

.footer .heart .f-add {
    display: flex;
    justify-content: space-between;
    height: 42px;
    border-top: 1px solid #ccc;
    align-items: center;
}

.footer .heart .f-add .add-fl {
    font-size: 12px;
    text-align: left;
    color: #666;
}

.footer .heart .f-add .add-fr {
    width: 36px;
    height: 36px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}


/*编辑器设置样式*/

.simple-article h1,
.simple-article h2,
.simple-article h3,
.simple-article h4,
.simple-article h5,
.simple-article h6 {
    font-weight: bold;
}

.simple-article h1 {
    font-size: 34px;
    line-height: 1.3em;
    margin-bottom: 5px;
}

.simple-article h2 {
    font-size: 30px;
    line-height: 1.2em;
    margin-bottom: 10px;
}

.simple-article h3 {
    font-size: 26px;
    line-height: 1.6em;
    margin-bottom: 10px;
}

.simple-article h4 {
    font-size: 22px;
    line-height: 1.25em;
    margin-bottom: 10px;
}

.simple-article h5 {
    font-size: 18px;
    line-height: 1.6em;
    margin-bottom: 10px;
}

.simple-article h6 {
    font-size: 14px;
    line-height: 1.5em;
    margin-bottom: 10px;
}

.simple-article p {
    color: #666;
    overflow: hidden;
}

.simple-article a {
    display: inline-block;
}

.simple-article blockquote {
    display: block;
    font-family: Georgia, "Times New Roman", Times, serif;
    padding: 10px 20px 10px 45px;
    color: #666;
    line-height: 160%;
    margin-bottom: 15px;
}


/* ????”¨ */

.simple-article blockquote em {
    color: #999;
    text-align: right;
    display: block;
}

.dropcap {
    float: left;
    padding: 10px 10px 5px 0;
    font-weight: bold;
}


/* é|–?-—????2‰ */

.simple-article hr {
    border: 1px solid #ddd;
    border-width: 0 0 1px 0;
    height: 1px;
    font-size: 0;
    margin: 25px 0;
    clear: both;
    *margin: 17px 0;
}

.simple-article .br {
    font-size: 0;
}


/*-------------------------------------
   List
-------------------------------------*/

.simple-article li ul,
.simple-article li ol {
    margin: 0;
}

.simple-article ul,
.simple-article ol {
    margin: 0 0 15px 0;
    padding-left: 1.5em;
    line-height: 180%;
    _margin-left: 5px;
}

.simple-article ul {
    list-style-type: disc;
}

.simple-article ul.square {
    list-style: square;
}

.simple-article ul.circle {
    list-style: circle;
}

.simple-article ol {
    list-style-type: decimal;
    *padding-left: 1.8em;
}

.simple-article dl {
    margin: 0 0 1.5em 0;
}

.simple-article dl dt {
    font-weight: bold;
}

.simple-article dd {
    margin-left: 1.5em;
}


/*-------------------------------------
   2. table
-------------------------------------*/

.simple-article table {
    border-collapse: collapse;
    border-spacing: 0;
    overflow: hidden;
    width: 100%;
    margin-bottom: 15px;
}

.simple-article table th {
    font-weight: bold;
}

.simple-article table th,
.simple-article table td {
    border-top: 1px solid #DDDDDD;
    line-height: 18px;
    padding: 8px;
    /*text-align: left;*/
    vertical-align: top;
}

.simple-article table colgroup+thead tr:first-child th,
.simple-article table colgroup+thead tr:first-child td,
.simple-article table thead:first-child tr:first-child th,
.simple-article table thead:first-child tr:first-child td {
    border-top: 0 none;
}

.simple-article table thead tr th,
.simple-article table thead tr td {
    *border-top: 0 none;
}

.simple-article .table-striped tbody tr:nth-child(2n+1) td,
.simple-article .table-striped tbody tr:nth-child(2n+1) th {
    background-color: #F9F9F9;
}

.simple-article table th {
    background: #EBEBEB;
}

.simple-article .table-bordered {
    -moz-border-colors: none;
    border-collapse: separate;
    border-color: #DDDDDD #DDDDDD #DDDDDD;
    border-style: solid solid solid none;
    border-width: 1px 1px 1px 0;
}

.simple-article .table-bordered th,
.table-bordered td {
    border-left: 1px solid #DDDDDD;
}

.simple-article .table-row thead th {
    background: #ebebeb;
}

.simple-article .table-row tbody th {
    background: #f5f5f5;
}

.simple-article .table-col {
    border-top-width: 0;
}

.simple-article .table-col tbody th {
    background: #ebebeb;
}

.simple-article ul li {
    list-style: inside
}


/*Alignment*/

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.625em;
}

.alignright {
    clear: both;
    display: inline;
    float: right;
    margin-left: 1.625em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/*-------------------------------------
   page 翻页器end
-------------------------------------*/