.header {
    color: #fff;
    font-size: 17px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: all .4s;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.header:hover,
.header.active {
    color: #000;
    background: #fff;
}

.header .main {
    display: flex;
    align-items: center;
}

.header h1 {
    width: 120px;
    height: 60px;
    background: url(../images/logo.png)
    no-repeat
    left center/contain;
}

.header h1 a {
    text-indent: -9999px;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.header .nav {
    display: flex;
    margin-left: auto;
}

.header .nav li {
    line-height: 100px;
    position: relative;
}

.header .nav li:not(:last-child) {
    margin-right: 30px;
}

.header .nav li::after {
    content: '';
    width: 0;
    height: 3px;
    left: 0;
    bottom: -1px;
    transition: all ease-in-out .4s;
    background: #2799ce;
}

.header .nav li.active::after,
.header .nav li:hover::after {
    width: 100%;
}

.header .nav li a {
    display: inline-block;
    height: 100%;
}

.header .nav li .drop-down {
    width: 200px;
    display: none;
    position: absolute;
    top: 101px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
}

.header .nav li .drop-down .li {
    color: #666;
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    line-height: 60px;
}

.header .nav li .drop-down .li:hover {
    color: #fff;
    background: #2799ce;
}

.header .nav li .drop-down .li a {
    width: 100%;
    height: 100%;
    display: inline-block;
}

.header .nav li .filter {
    display: none;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    position: fixed;
    top: 101px;
    left: 0;
    right: 0;
}

.header .nav li .filter .wrap {
    display: flex;
}

.header .nav li .filter .hd {
    width: 250px;
}

.header .nav li .filter .hd li {
    color: #666;
    font-size: 18px;
    line-height: 75px;
    cursor: pointer;
    padding: 0 30px;
    margin-right: 0;
    background: #f4f4f4;
}

.header .nav li .filter .hd li.on {
    color: #fff;
    background: #2799ce;
}

.header .nav li .filter .hd li::after {
    display: none;
}

.header .nav li .filter .bd {
    width: 1050px;
    padding: 35px;
    background: #fff;
}

.header .nav li .filter .list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px 26px;
}

.header .nav li .filter .column {
    background: #f4f4f4;
}

.header .nav li .filter .column:hover {
    background: #2799ce;
}

.header .nav li .filter .column a {
    display: flex;
    align-items: center;
    padding: 13px 17px;
}

.header .nav li .filter .column .img {
    width: 64px;
    height: 64px;
}

.header .nav li .filter .column p {
    color: #222;
    font-size: 18px;
    line-height: normal;
    width: calc(100% - 85px);
    margin-left: auto;
}

.header .nav li .filter .column:hover p {
    color: #fff;
}

.header .lang {
    display: block;
    margin-left: 40px;
}

.header .phone {
    line-height: 40px;
    display: inline-block;
    padding: 0 15px;
    margin-left: 30px;
    border-radius: 50px;
    background-image: linear-gradient(
        to right,
        #2799ce,
        #123b87
    );
}

.header:hover .phone,
.header.active .phone {
    color: #fff;
}




.footer {
    color: #666;
    font-size: 16px;
    padding: 78px 0 40px;
    background: url(../images/footer.jpg)
    no-repeat
    left center/cover;
}

.footer .title {
    display: flex;
    align-items: center;
    padding-bottom: 37px;
    margin-bottom: 42px;
    border-bottom: 1px solid #dcdcdc;
}

.footer .title a {
    display: block;
    width: 120px;
    height: 60px;
    background: url(../images/logo.png)
    no-repeat
    left center/contain;
}

.footer .title h3 {
    color: #000;
    font-size: 30px;
    margin-left: 35px;
}

.footer .wrap {
    display: flex;
    margin-bottom: 52px;
}

.footer .nav {
    display: flex;
}

.footer .nav dl:not(:last-child) {
    margin-right: 110px;
}

.footer .nav dt {
    color: #222;
    margin-bottom: 15px;
}

.footer .nav dd {
    line-height: 36px;
}

.footer .nav dd a:hover {
    text-decoration: underline;
}

.footer .know {
    width: 260px;
    margin-left: auto;
}

.footer .know p {
    color: #000;
    line-height: 30px;
    margin-bottom: 25px;
}

.footer .know .button a {
    color: #fff;
    text-align: center;
    line-height: 52px;
    display: block;
    transition: all ease-in-out .3s;
}

.footer .know .button a:first-child {
    background: #2799ce;
}

.footer .know .button a:first-child:hover {
    background: #228dbf;
}

.footer .know .button a:last-child {
    background: #103a89;
}

.footer .know .button a:last-child:hover {
    background: #0e347a;
}

.footer .know .button a:not(:last-child) {
    margin-bottom: 14px;
}

.footer .content {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.footer .qrcode {
    display: flex;
}

.footer .qrcode .group {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #fff;
}

.footer .qrcode .group:not(:last-child) {
    margin-right: 20px;
}

.footer .qrcode .group .img {
    width: 130px;
    height: 130px;
}

.footer .qrcode .group .img img {
    width: 100%;
    height: 100%;
}

.footer .qrcode .group .tips {
    line-height: 30px;
    margin-left: 24px;
}

.footer .article {
    line-height: 36px;
    margin-left: 45px;
}

.footer .friendship {
    display: flex;
}

.footer .friendship li:not(:first-child,:last-child) {
    margin-right: 15px;
}

.footer .friendship li a:hover {
    text-decoration: underline;
}




.copy {
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    padding: 25px 0;
    background: #103a89;
}




.news {
    padding-top: 67px;
}

.news .page {
    padding: 85px 0;
}




.news-detail {
    padding: 100px 0;
}

.news-detail .title {
    margin-bottom: 30px;
    text-align: center;
}

.news-detail .title h2 {
    color: #444;
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 15px;
}

.news-detail .title em {
    color: #999;
    font-size: 18px;
    display: block;
}

.news-detail .article {
    color: #666;
    font-size: 16px;
    line-height: 30px;
    padding-bottom: 45px;
    margin-bottom: 45px;
    border-bottom: 1px solid #d2d2d2;
}

.news-detail .button {
    text-align: center;
}

.news-detail .button a {
    color: #666;
    font-size: 18px;
    display: inline-block;
    position: relative;
    margin-right: 101px;
}

.news-detail .button a:last-child {
    margin-right: 0;
}

.news-detail .button a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: auto;
    right: -51px;
    transform: translate(0, -50%);
    width: 1px;
    height: 20px;
    background-color: #bfbfbf;
}

.news-detail .button a:last-child::after {
    display: none;
}

.news-detail .button a:hover {
    color: #2799ce;
    text-decoration: underline;
}




.sample {
    padding: 85px 0 125px;
    background: #f7f7f7;
}

.sample .theme-title {
    margin-bottom: 53px;
}




.sample-news {
    padding: 95px 0 100px;
    border-top: none;
}




.contact {
    padding: 85px 0 70px;
}

.contact .theme-title {
    margin-bottom: 50px;
}

.contact .theme-title h2 {
    margin-bottom: 26px;
}

.contact .theme-title p {
    max-width: 660px;
    margin: 0 auto;
}

.contact .list {
    gap: 35px;
}

.contact .list .column {
    text-align: center;
    padding: 40px 40px 48px;
    transition: all .2s;
    background: #f4f4f4;
}

.contact .list .column:hover {
    background: #2799ce;
}

.contact .column .icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 22px;
}

.contact .column:nth-child(1) .icon {
    background-image: url(../images/address.png);
}

.contact .column:nth-child(1):hover .icon {
    background-image: url(../images/address-touch.png);
}

.contact .column:nth-child(2) .icon,
.contact .column:nth-child(3) .icon {
    background-image: url(../images/phone.png);
}

.contact .column:nth-child(2):hover .icon,
.contact .column:nth-child(3):hover .icon {
    background-image: url(../images/phone-touch.png);
}

.contact .column:nth-child(4) .icon {
    background-image: url(../images/fax.png);
}

.contact .column:nth-child(4):hover .icon {
    background-image: url(../images/fax-touch.png);
}

.contact .column:nth-child(5) .icon {
    background-image: url(../images/email.png);
} 

.contact .column:nth-child(5):hover .icon {
    background-image: url(../images/email-touch.png);
} 

.contact .column:nth-child(6) .icon {
    background-image: url(../images/website.png);
} 

.contact .column:nth-child(6):hover .icon {
    background-image: url(../images/website-touch.png);
} 

.contact .column h4 {
    color: #888;
    font-size: 16px;
    margin-bottom: 10px;
}

.contact .column p {
    color: #222;
    font-size: 20px;
    line-height: 32px;
}

.contact .column:hover h4,
.contact .column:hover p {
    color: #fff;
}




.map {
    font-size: 0;
    max-width: 1300px;
    margin: 0 auto;
}




.message {
    overflow: hidden;
    padding: 77px 0 100px;
    position: relative;
    z-index: 9;
}

.message::after {
    content: '';
    width: 1630px;
    height: 590px;
    top: 180px;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
    background-image: url(../images/message.png);
}

.message .theme-title {
    margin-bottom: 55px;
}

.message .common-form input,
.message .common-form textarea {
    border: 1px solid #dcdcdc;
}

.message .common-form img {
    height: 60px;
    right: 1px;
    bottom: 1px;
}




.download {
    padding-top: 68px;
}

.download .page {
    padding: 85px 0;
}




.media {
    padding-top: 65px;
}

.media .page {
    padding: 90px 0;
}




.about {
    padding: 100px 0 115px;
}

.about .wrap {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
}

.about .content {
    width: 650px;
    padding-top: 5px;
}

.about .theme-title {
    text-align: left;
    margin-bottom: 25px;
}

.about .theme-title h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.about .theme-title p {
    color: #2799ce;
    line-height: normal;
}

.about .article {
    color: #666;
    font-size: 17px;
    line-height: 36px;
}

.about .img {
    width: 555px;
    height: 600px;
    margin-left: auto;
}




.honor {
    padding: 70px 0 95px;
    background-image: linear-gradient(
        to bottom,
        #f4f4f4,
        #ffffff
    );
}

.honor .theme-title {
    margin-bottom: 50px;
}

.honor .picture {
    margin-bottom: 45px;
}

.honor .contain {
    position: relative;
}

.honor .contain .common-carousel {
    width: 52px;
    height: 52px;
    position: absolute;
    top: 94px;
}

.honor-swiper {
    width: 1110px;
} 

.honor-swiper .img {
    height: 240px;
    margin-bottom: 25px;
}

.honor-swiper p {
    color: #222;
    font-size: 18px;
    text-align: center;
}
 
.honor-swiper .swiper-slide:hover p {
    color: #2799ce;
}




.course {
    padding: 82px 0 115px;
    background: url(../images/course.jpg)
    no-repeat
    center/cover;
}

.course .theme-title {
    margin-bottom: 50px;
}

.course .contain {
    position: relative;
}

.course .contain .common-carousel {
    width: 52px;
    height: 52px;
    position: absolute;
    transform: translateY(-50%);
}

.course .swiper-line {
    width: 1160px;
    margin: 0 auto;
    position: relative;
}

.course .swiper-line::after {
    content: '';
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 1px dashed #b5b5b5;
}

.course-swiper {
    width: 1100px;
    height: 430px;
}

.course-swiper .swiper-slide {
    display: flex;
    position: relative;
}

.course-swiper .swiper-slide::after {
    content: '';
    width: 14px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #2799ce;
}

.course-swiper .content {
    text-align: center;
    width: 100%;
    height: 170px;
    padding: 20px 25px;
    position: relative;
    background: #fff;
}

.course-swiper .swiper-slide:nth-child(2n - 1) .content {
    margin-top: auto;
}

.course-swiper .content::after {
    content: '';
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    border-top: 14px solid #fff;
    border-right: 14px solid transparent;
    border-bottom: 0 solid transparent;
    border-left: 14px solid transparent;
}

.course-swiper .swiper-slide:nth-child(2n - 1) .content::after {
    top: -13px;
    bottom: auto;
    border-top: 0 solid transparent;
    border-bottom: 14px solid #fff;
}

.course-swiper .content span {
    color: #2799ce;
    font-size: 26px;
}

.course-swiper .content p {
    color: #222;
    font-size: 18px;
    line-height: 30px;
    margin-top: 4px;
}




.culture {
    padding: 85px 0 115px;
}

.culture .theme-title {
    margin-bottom: 45px;
}

.culture .list {
    gap: 12px;
}

.culture .list .column {
    color: #fff;
    text-align: center;
    min-height: 430px;
    padding: 105px 37px;
    position: relative;
    z-index: 10;
    transition: all ease-in-out .3s;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.culture .list .column:hover {
    transform: translateY(-15px);
}

.culture .list .column::after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: rgba(0, 0, 0, .3);
}

.culture .column h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.culture .column p {
    font-size: 22px;
    line-height: 42px;
}




.honor2 {
    padding: 77px 0 90px;
    background: #f4f4f4;
}

.honor2 .theme-title {
    margin-bottom: 44px;
}

.honor2-swiper .swiper-wrapper {
    margin-bottom: 45px;
}

.honor2-swiper .img {
    height: 404px;
    padding: 15px;
    margin-bottom: 28px;
    background: #fff;
}

.honor2-swiper p {
    color: #222;
    font-size: 18px;
    text-align: center;
}

.honor2-swiper .swiper-slide:hover p {
    color: #2799ce;
}

.honor2-swiper .common-carousel {
    width: 52px;
    height: 52px;
}




.exhibition {
    padding: 82px 0 100px;
}

.exhibition .theme-title {
    margin-bottom: 45px;
}

.exhib-swiper .swiper-wrapper {
    margin-bottom: 45px;
}

.exhib-swiper .swiper-slide {
    height: 420px;
    position: relative;
}

.exhib-swiper .img {
    position: relative;
}

.exhib-swiper .img::after {
    content: '';
    width: 70px;
    height: 70px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../images/play.png);
}

.exhib-swiper p {
    color: #fff;
    font-size: 18px;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 60px;
    width: 100%;
    padding: 0 15px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .3);
}




.product {
    padding-top: 55px;
}

.product .page {
    padding: 78px 0;
}




.product-engine {
    border-bottom: none;
}

.introduce {
    display: flex;
    max-width: 1300px;
    padding: 15px 0 40px;
    margin: 0 auto;
}

.introduce .contain {
    width: 650px;
}

.introduce .gallery-swiper {
    height: 370px;
    margin-bottom: 13px;
}

.introduce .gallery-swiper .img {
    position: relative;
}

.introduce .gallery-swiper .img .icon {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../images/play.png);
}

.introduce .thumbs {
    position: relative;
}

.introduce .thumbs .introd-carousel {
    width: 13px;
    height: 20px;
    margin-top: 0;
    transform: translateY(-50%);
}

.introduce .thumbs .swiper-button-prev {
    left: 0;
    background-image: url(../images/introd-prev.png);
}

.introduce .thumbs .swiper-button-next {
    right: 0;
    background-image: url(../images/introd-next.png);
}

.introduce .thumb-swiper {
    width: 571px;
}

.introduce .thumb-swiper .swiper-slide {
    height: 80px;
    border: 1px solid transparent;
}

.introduce .thumb-swiper .swiper-slide-thumb-active {
    border: 1px solid #2799ce;
}

.introduce .content {
    width: 570px;
    padding-top: 20px;
    margin-left: auto;
}

.introduce .content h2 {
    color: #222;
    font-size: 24px;
    padding-bottom: 22px;
    margin-bottom: 30px;
    border-bottom: 1px solid #dcdcdc;
}

.introduce .content h4 {
    color: #000;
    font-size: 20px;
    margin-bottom: 13px;
}

.introduce .content p {
    color: #888;
    font-size: 17px;
    line-height: 36px;
    padding-bottom: 20px;
    margin-bottom: 32px;
    border-bottom: 1px solid #dcdcdc;
}

.introduce .content .skip {
    display: flex;
    margin-bottom: 33px;
}

.introduce .content .skip a {
    color: #666;
    font-size: 16px;
}

.introduce .content .skip a:not(:last-child) {
    margin-right: 25px;
}

.introduce .content .skip a:hover {
    color: #2799ce;
}

.introduce .content .product-button {
    gap: 0 20px;
}

.introduce .content .product-button .label {
    line-height: 55px;
}




.details {
    max-width: 1300px;
    padding-top: 35px;
    margin: 40px auto 34px;
    border-top: 1px solid #dcdcdc;
}

.details .item:not(:last-child) {
    padding-bottom: 36px;
    margin-bottom: 36px;
    border-bottom: 1px solid #dcdcdc;
}

.details .theme-vice-title {
    margin-bottom: 16px;
}

.details .article {
    color: #666;
    font-size: 17px;
    line-height: 36px;
}




.product-hd {
    display: flex;
    align-items: center;
    margin-bottom: 33px;
}

.product-hd .around-btn {
    margin-left: auto;
}




.relevant {
    padding: 31px 0;
}



.other {
    padding: 31px 0 19px;
}

.other-swiper .img {
    height: 235px;
}

.other-swiper .content {
    text-align: center;
    padding: 26px 40px;
    background: #f4f4f4;
}

.other-swiper .content p {
    color: #222;
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 13px;
}

.other-swiper .content span {
    color: #11aaed;
    font-size: 16px;
}




.product-news {
    border-top: none;
}




.banner-content {
    color: #fff;
    position: relative;
}

.banner-content .contain {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 118px;
    z-index: 99;
}

.banner-content h2 {
    font-size: 56px;
    font-family: al-bl;
    text-shadow: 5px 5px #103a89;
    margin-bottom: 22px;
}

.banner-content p {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 42px;
}

.banner-content a {
    font-size: 15px;
    font-weight: bold;
    line-height: 55px;
    display: inline-block;
    padding-left: 30px;
    margin-bottom: 200px;
    position: relative;
}

.banner-content a::after {
    content: '';
    width: 55px;
    height: 55px;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 50%;
    background: #2799ce;
}

.banner-content a span {
    display: flex;
    align-items: center;
    transition: all ease-in-out .6s;
}

.banner-content a:hover span {
    transform: translateX(35px);
}

.banner-content a .icon {
    display: block;
    width: 23px;
    height: 12px;
    margin-left: 15px;
    background-image: url(../images/banner-arrow.png);
}

.banner-content .around-btn {
    justify-content: left;
}

.banner-content .around-btn .common-carousel {
    width: 13px;
    height: 21px;
    border: none;
    border-radius: 0;
    background-color: transparent;
}

.banner-content .around-btn .swiper-button-prev {
    margin-right: 53px;
    background-image: url(../images/ibanner-prev.png);
}

.banner-content .around-btn .swiper-button-prev:hover {
    background-image: url(../images/ibanner-touch-prev.png);
}

.banner-content .around-btn .swiper-button-next {
    margin-left: 0;
    background-image: url(../images/ibanner-next.png);
}

.banner-content .around-btn .swiper-button-next:hover {
    background-image: url(../images/ibanner-touch-next.png);
}

.banner-content .around-btn .common-carousel::after {
    display: none;
}




.index-engine .form {
    overflow: visible;
    width: 430px;
    display: flex;
    border-radius: 0;
    border: 1px solid #dcdcdc;
}

.index-engine .form::after {
    display: none;
}

.index-engine .form .drop-down {
    width: 110px;
    position: relative;
    border-right: 1px solid #dcdcdc;
}

.index-engine .form .drop-down h4 {
    color: #666;
    font-size: 16px;
    line-height: 58px;
    height: 58px;
    padding: 0 13px;
    position: relative;
}

.index-engine .form .drop-down h4::after {
    content: '';
    width: 11px;
    height: 8px;
    top: 25px;
    right: 13px;
    background-image: url(../images/down.png);
}

.index-engine .form .drop-down ul {
    width: 100%;
    display: none;
    padding: 15px 0;
    position: absolute;
    top: 59px;
    left: 0;
    background: #fff;
}

.index-engine .form .drop-down ul li {
    font-size: 15px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    height: 40px;
    margin-right: 0;
}

.index-engine .form form {
    display: inline-block;
    width: 320px;
}

.index-engine .form input {
    color: #888;
    font-size: 16px;
    width: 100%;
    height: 58px;
    padding: 0 50px 0 18px;
    background: transparent;
}

.index-engine .form button {
    width: 22px;
    height: 22px;
    position: absolute;
    top: 18px;
    right: 18px;
    background: url(../images/search2.png)
    no-repeat
    right center/contain;
}

.index-engine .form button:hover {
    background: url(../images/search2.png)
    no-repeat
    right center/contain;
}




.index-media {
    background: url(../images/imedia.jpg)
    no-repeat
    center/cover;
}




.index-product {
    padding: 93px 0 86px;
    border-bottom: 2px solid #063795;
}

.index-product .theme-title {
    max-width: 1300px;
    margin: 0 auto 47px;
}




.index-media2 {
    background: url(../images/imedia2.jpg)
    no-repeat
    center/cover;
}

.index-media2 .theme-title h2,
.index-media2 .theme-title p {
    color: #fff;
}

.index-media2 .common-hd li {
    color: #fff;
}




.index-about {
    max-width: 1300px;
    padding: 118px 0 87px;
    margin: 0 auto;
}

.index-about .contain {
    display: flex;
    padding-bottom: 84px;
    margin-bottom: 60px;
    border-bottom: 1px solid #e5e5e5;
}

.index-about .title {
    color: #2799ce;
}

.index-about .title em {
    font-size: 30px;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.index-about .title span {
    font-size: 140px;
    line-height: 1;
}

.index-about .title h2 {
    color: #222;
    font-size: 32px;
    line-height: 56px;
}

.index-about .content {
    width: 650px;
    margin-left: auto;
}

.index-about .article {
    color: #666;
    font-size: 17px;
    line-height: 32px;
    margin-bottom: 47px;
}

.index-about .common-more {
    margin: 0;
}

.index-about .coverage {
    text-align: center;
}

.index-about h3 {
    color: #222;
    font-size: 32px;
    margin-bottom: 73px;
}




.index-news {
    padding: 82px 0 100px;
    border-bottom: 4px solid #1d6eaf;
    background: #f4f4f4;
}

.index-news .theme-title {
    margin-bottom: 19px;
}

.index-news .common-hd {
    margin-bottom: 52px;
}

.index-news .bd {
    margin-bottom: 60px;
}




.sidebar {
    width: auto;
    /* opacity: 0;
    visibility: hidden; */
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    z-index: 999;
    /* transition: all ease-in-out .4s; */
}

/* .sidebar.active {
    opacity: 1;
    visibility: visible;
} */

.sidebar .item {
    padding: 11px 6px;
    margin-bottom: 7px;
    border-radius: 10px;
    background: #2799ce;
}

.sidebar .list {
    position: relative;
}

.sidebar .list:not(:last-child) {
    margin-bottom: 5px;
}

.sidebar .list a {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all ease-in-out .3s;
}

.sidebar .list:hover a {
    background: #103a89;
}

.sidebar .list .icon {
    width: 30px;
    height: 25px;
}

.sidebar .list:first-child .icon,
.sidebar .list:last-child .icon {
    width: 19px;
    height: 12px;
}

.sidebar .list:nth-child(1) .icon {
    background-image: url(../images/flexbar1.png);
}

.sidebar .list:nth-child(2) .icon {
    background-image: url(../images/flexbar2.png);
}

.sidebar .list:nth-child(3) .icon {
    background-image: url(../images/flexbar3.png);
}

.sidebar .list:nth-child(4) .icon {
    background-image: url(../images/flexbar4.png);
}

/* .sidebar .list:hover .icon {
    -webkit-filter: grayscale(100%) brightness(500%);
    filter: grayscale(100%) brightness(500%);
} */

.sidebar .list .show {
   display: none;
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   right: 68px;
}

.sidebar .show .img {
    width: 130px;
    height: 130px;
}

.sidebar .show .img  img {
    width: 100%;
    height: 100%;   
}

.sidebar .phone .show,
.sidebar .email .show
{
    color: #fff;
    font-size: 16px;
    line-height: 48px;
    white-space: nowrap;
    padding: 0 8px;
    background: #2799ce;
}

.sidebar .template {
    text-align: center;
    width: 60px;
    border-radius: 10px;
    transition: all ease-in-out .3s;
    background: #2799ce;
}

.sidebar .template:hover {
    background: #103a89;
}

.sidebar .template a {
    padding: 23px 12px 10px;
    display: inline-block;
}

.sidebar .template .icon {
    width: 35px;
    height: 18px;
    margin: 0 auto 20px ;
    background-image: url(../images/flex-temp.png);
}

.sidebar .template p {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
}





/* New style */
.login {
    padding: 210px 0 250px;
    background: url(../images/login.jpg)
    no-repeat
    center/cover;
}

.login .card {
    width: 455px;
    padding: 35px 40px 65px;
    margin: 0 auto;
    border-radius: 15px;
    background: #fff;
}

.login .hd {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.login .hd li {
    color: #222;
    font-size: 24px;
}

.login .hd li.on {
    color: #2799ce;
}

.login .hd li:not(:last-child) {
    margin-right: 100px;
}

.login .group {
    position: relative;
}

.login .group:not(:first-child) {
    margin-top: 25px;
}

.login .group label {
    color: #222;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.login .group label span {
    color: #e50000;
}

.login .group input {
    color: #222;
    font-size: 16px;
    height: 45px;
    border-bottom: 1px solid #dcdcdc;
}

.login .group input::-webkit-input-placeholder {
    color: #abb8be;
}

.login .group img {
    cursor: pointer;
    width: 145px;
    height: 45px;
    position: absolute;
    right: 0;
    bottom: 15px;
}

.login button {
    color: #fff;
    font-size: 20px;
    height: 60px;
    overflow: hidden;
    margin-top: 45px;
    position: relative;
    z-index: 10;
    border-radius: 50px;
    background: #2799ce;
}

.login button::after {
    content: '';
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all ease-in-out .4s;
    background: #248ebf;
}

.login button:hover::after {
    width: 100%;
}





















