@charset "utf-8"; /* 悬停图片放大 */
.img-scale {
    display: block;
    overflow: hidden;
}

.img-scale img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.img-scale:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

html, body {
    min-width: 1380px;
    max-width: 1920px;
}

.container {
    width: 1380px;
    margin: 0 auto;
}

/* 顶部 */
.header-layer1 {
    font-size: 14px;
    line-height: 45px;
    color: #fff;
    text-align: left;
    background: #1460a0;
}

.header-layer1 .top-link a {
    margin: 0 0 0 15px;
    color: #fff;
}

.header-layer1 .top-link a:hover {
    color: #fff;
}

.banner img {
    width: 100%;
    vertical-align: top;
}

.header-layer3 {
    padding: 30px 0;
    min-height: 220px;
    position: absolute;
    top: 45px;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 9;
    background-image: url("../images/header-bg.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    background-color: transparent;
}

.header-layer3 .container {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 10;
}

.header-layer3 .logo img {
    width: 500px;
    margin-right:35px;
    height: auto;
}

.nav {
    padding: 15px 0 0 0px;
}

.nav > li {
    float: left;
    margin: 0 16px;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 10;
}

.nav > li a {
    font-size: 18px;
    line-height: 38px;
    color: #fff;
    text-align: left;
}

.nav > li > i {
    display: block;
    width: 0%;
    height: 4px;
    background: #1460a0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    position: absolute;
    top: 38px;
    right: auto;
    bottom: auto;
    left: 50%;
    z-index: 1;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
}

.nav > li > ul {
    width: 0%;
    padding: 8px 0;
    position: absolute;
    top: 42px;
    right: auto;
    bottom: auto;
    left: 50%;
    z-index: 11;
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
    background: #fff;
    overflow: hidden;
}

.nav > li > ul a {
    display: block;
    white-space: nowrap;
    font-size: 16px;
    line-height: 35px;
    color: #444444;
    text-align: center;
}

.nav > li > ul a:hover {
    color: #fff;
    background: #1460a0;
}

.nav > li:hover i {
    width: 100%;
    left: 0%;
}

.nav > li:hover > ul {
    width: 150%;
    left: -25%;
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
}

.search {
    width: auto;
    height: 38px;
    margin: 16px 0 0;
    border: 1px solid #fff;
    border-radius: 18px;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 99;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
}

.search input {
    float: left;
    width: 0px;
    height: 36px;
    text-indent: 15px;
    font-size: 14px;
    line-height: 36px;
    color: #666;
    text-align: left;
    background: transparent;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
}

.search button {
    float: right;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background-image: url("../images/icon_searhc.png");
    background-repeat: no-repeat;
    background-position: 50% 45%;
    background-color: transparent;
}

.search:hover {
    background: #fff;
    border-color: #eee;
}

.search:hover > input {
    width: 180px;
}

.search:hover > button {
    background-image: url("../images/icon_searhc_i.png");
}

/* index.css */
/* 图片新闻 */
.section-layer1 {
    height: 400px;
    background: #f4f4f4;
}

.section-layer1 .tpxw {
    padding: 42px 35px;
    background: #f6b498;
    position: relative;
    top: -24px;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
}

.section-layer1 .tpxw li {
    float: left;
    width: 350px;
    margin-left: 11px;
}

.section-layer1 .tpxw li .img-scale {
    height: 277px;
}

.section-layer1 .tpxw li .img-scale img {
    height: 100%;
}

.section-layer1 .tpxw li .title {
    width: 100%;
    height: 72px;
    margin: 11px 0 0;
    padding: 6px 8px;
    font-size: 18px;
    line-height: 30px;
    color: #444444;
    text-align: left;
    background: #fff;
}

.section-layer1 .tpxw li .title:hover {
    color: #1460a0;
}

.section-layer1 .tpxw li:first-child {
    width: 588px;
    margin-left: 0;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
}

.section-layer1 .tpxw li:first-child .img-scale {
    width: 100%;
    height: 360px;
}

.section-layer1 .tpxw li:first-child .img-scale p {
    width: 85%;
    height: 72px;
    padding: 6px 40px;
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 1;
    font-size: 18px;
    line-height: 30px;
    color: #444444;
    text-align: left;
    background: #fff;
}

.section-layer1 .tpxw li:first-child .img-scale:hover p {
    color: #1460a0;
}

/* 通知公告 · 党团建设 */
.switch-top {
    padding: 20px 0 30px;
    font-size: 34px;
    line-height: normal;
    color: #ccc;
    text-align: left;
}

.switch-top h3 {
    display: inline;
    cursor: pointer;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
}

.switch-top h3.active {
    color: #ffffff;
}

.switch-top span {
    color: #f6b498;
}

.switch-box {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
}

.switch-box > div {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: -1;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
}

.switch-box > div.active {
    z-index: 9;
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
}

.section-layer2 {
    margin-top: 30px;
}

.section-layer2 .switch-top {
    text-align: center;
}

.section-layer2 .switch-top h3.active {
    color: #000033;
}

.section-layer2 .switch-box {
    height: 330px;
}

.section-layer2 .switch-box li {
    float: left;
    width: 420px;
    margin-left: 60px;
    margin-bottom: 40px;
    padding: 40px 0 0;
    border-top: 1px solid #1460a0;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
}

.section-layer2 .switch-box li:first-child {
    margin-left: 0;
}

.section-layer2 .switch-box li .date {
    width: 60px;
    font-size: 18px;
    line-height: normal;
    color: #1460a0;
    text-align: right;
}

.section-layer2 .switch-box li .date p:first-child {
    font-size: 50px;
}

.section-layer2 .switch-box li .text {
    width: 340px;
}

.section-layer2 .switch-box li .text a {
    font-size: 18px;
    line-height: 30px;
    color: #444444;
    text-align: left;
    margin-bottom: 10px;
}

.section-layer2 .switch-box li .text a:hover {
    color: #1460a0;
}

.section-layer2 .switch-box li .text p {
    font-size: 14px;
    line-height: 28px;
    color: #777;
    text-align: left;
}

.more {
    clear: both;
    display: block;
    width: 420px;
    height: 55px;
    margin: 40px auto;
    padding-right: 20px;
    font-size: 16px;
    line-height: 53px;
    color: #1460a0;
    text-align: center;
    border: 1px solid #1460a0;
    background-image: url("../images/icon_more.png");
    background-repeat: no-repeat;
    background-position: 248px 50%;
    background-color: transparent;
}

/* 教育教学 · 学生工作 */
.section-layer3 {
    padding: 55px 0 0;
    background-image: url("../images/section-bg1.jpg");
    background-repeat: no-repeat;
    background-position: 0 0;
    background-color: transparent;
}

.section-layer3 .container {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
}

.section-layer3 .switch-top span {
    color: #fff;
}

.section-layer3 .decoration-line {
    width: 1px;
    height: 55px;
    background: #fff;
    position: absolute;
    top: 77px;
    right: auto;
    bottom: auto;
    left: 149px;
    z-index: 1;
}

.section-layer3 .switch-box {
    margin: 60px 0 0;
    height: 400px;
}

.section-layer3 .switch-box .more {
    margin-top: 75px;
}

.section-layer3 .swiper-container {
    margin: 0 -12px;
}

.section-layer3 .swiper-container .swiper-slide {
    width: 33.33%;
}

.section-layer3 .swiper-container .swiper-slide .img-scale {
    width: 100%;
    height: 267px;
    padding: 0 12px;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
}

.section-layer3 .swiper-container .swiper-slide .img-scale .img-show {
    width: 100%;
    overflow: hidden;
}

.section-layer3 .swiper-container .swiper-slide .img-scale img {
    vertical-align: top;
    width: 100%;
    height: 100%;
}

.section-layer3 .swiper-container .swiper-slide .img-scale .title {
    width: 400px;
    padding: 15px 0 0;
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 12px;
    z-index: 1;
    font-size: 18px;
    line-height: 40px;
    color: #444444;
    text-align: center;
    background: #fff;
}

.section-layer3 .swiper-container .swiper-slide .img-scale .date {
    padding-left: 35px;
    padding-right: 15px;
    position: absolute;
    top: auto;
    right: auto;
    bottom: 40px;
    left: 12px;
    z-index: 1;
    font-size: 14px;
    line-height: 36px;
    color: #fff;
    text-align: center;
    background-image: url("../images/icon_clock.png");
    background-repeat: no-repeat;
    background-position: 14px 50%;
    background-color: #1460a0;
}

.section-layer3 .swiper-container .swiper-slide .img-scale:hover .title {
    color: #1460a0;
}

.section-layer3 .pagination {
    padding-right: 46px;
    position: absolute;
    top: -135px;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1;
    background-image: url("../images/pagination-bg.png");
    background-repeat: no-repeat;
    background-position: 100% 64%;
    background-color: transparent;
}

.section-layer3 .pagination span {
    float: left;
    width: 25px;
    height: 44px;
    margin-left: 49px;
    cursor: pointer;
    background-image: url("../images/icon_hj.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
}

.section-layer3 .pagination span.swiper-active-switch {
    background-image: url("../images/icon_hj_active.png");
}

/* 继续教育 · 合作交流 */
.section-layer4 {
    margin: 60px 0 0;
    background-image: url("../images/section_bg2.jpg");
    background-repeat: no-repeat;
    background-position: 0 0;
    background-color: transparent;
}

.section-layer4 .container {
    position: relative;
}

.section-layer4 .switch-top {
    padding-bottom: 42px;
}

.section-layer4 .switch-top span {
    color: #fff;
}

.section-layer4 .switch-box {
    height: 610px;
    overflow: hidden;
}

.section-layer4 .switch-box .box-item ul {
    float: left;
    width: 563px;
}

.section-layer4 .switch-box .box-item ul li {
    margin: 0 0 12px;
}

.section-layer4 .switch-box .box-item ul li a {
    display: block;
}

.section-layer4 .switch-box .box-item ul li .top p {
    float: left;
    width: 465px;
    height: 26px;
    margin: 30px 0 0;
    background: #fff;
}

.section-layer4 .switch-box .box-item ul li .top .date {
    float: right;
    width: 90px;
    height: 48px;
    margin: 0 0 8px;
    padding: 5px 16px 0 36px;
    font-size: 14px;
    line-height: normal;
    color: #555;
    text-align: left;
    background-image: url("../images/icon_date.png");
    background-repeat: no-repeat;
    background-position: 5px 50%;
    background-color: #fff;
}

.section-layer4 .switch-box .box-item ul li .bot {
    clear: both;
    width: 100%;
    height: 62px;
    padding-top: 5px;
    padding-left: 14px;
    font-size: 18px;
    line-height: 30px;
    color: #444444;
    text-align: left;
    background-color: #fff;
}

.section-layer4 .switch-box .box-item ul li .bot:hover p {
    color: #1460a0;
}

.section-layer4 .switch-box .box-item ul:first-child {
    width: 735px;
    height: 506px;
    overflow: hidden;
    margin-right: 82px;
    margin-bottom: 35px;
}

.section-layer4 .switch-box .box-item ul:first-child li {
    float: left;
    width: 315px;
    margin: 0 100px 56px 0;
}

.section-layer4 .switch-box .box-item ul:first-child li:nth-child(2n) {
    margin-right: 0;
}

.section-layer4 .switch-box .box-item ul:first-child li .top p {
    width: 217px;
}

.section-layer4 .switch-box .box-item ul:first-child li .top p.date {
    width: 90px;
}

.section-layer4 .switch-box .box-item ul:first-child li .bot {
    height: 170px;
    padding: 12px 20px;
}

.section-layer4 .switch-box .box-item ul:first-child li .bot .info {
    margin: 5px 0 0;
    font-size: 14px;
    line-height: 25px;
    color: #999;
    text-align: left;
}

.section-layer4 .switch-box .box-item .more {
    color: #fff;
    border-color: #fff;
    background-image: url("../images/icon_more2.png");
}

.section-layer4 .decoration-line {
    width: 980px;
    height: 50px;
    position: absolute;
    top: 40px;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}

/* 快速链接 */
.section-layer5 {
    /* padding: 25px 0 0; */
    /* background-image: url("../images/section-bg3.jpg"); */
    background-repeat: no-repeat;
    background-position: 0 0;
    background-color: transparent;
}

.section-layer5 .kslj .column {
    padding: 0 0 60px;
    font-size: 34px;
    line-height: normal;
    color: #000033;
    text-align: center;
}

.section-layer5 .kslj ul {
    padding: 30px 60px;
    height: 300px;
    border: 1px solid #e5e7e6;
    background: rgba(255, 255, 255, 0.35);
    filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#66ffffff',endColorstr='#66ffffff');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(gradientType=1,startColorstr='#66ffffff', endColorstr='#66ffffff')";
}

.section-layer5 .kslj ul li {
    float: left;
    margin-bottom: 36px;
    margin-right: 26px;
}

.section-layer5 .kslj ul li a {
    display: block;
    width: 295px;
    height: 55px;
    font-size: 18px;
    line-height: 53px;
    color: #555;
    text-align: center;
    border: 1px solid #1460a0;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -o-border-radius: 14px;
    border-radius: 14px;
}

.section-layer5 .kslj ul li a:hover {
    color: #fff;
    background: #1460a0;
}

.section-layer5 .kslj ul li:nth-child(4n) {
    margin-right: 0;
}

.section-layer5 .wzdh {
    /* margin: 120px 0 0; */
    /* padding: 0 0 75px; */
    background-image: url("../images/section-bg4.png");
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-color: transparent;
}

.section-layer5 .wzdh .wzdh-img-link {
    height: 230px;
}

.section-layer5 .wzdh .wzdh-img-link li {
    float: left;
    margin-right: 45px;
}

.section-layer5 .wzdh .wzdh-img-link li a {
    width: 325px;
    height: 230px;
    position: relative;
}

.section-layer5 .wzdh .wzdh-img-link li a img {
    height: 100%;
}

.section-layer5 .wzdh .wzdh-img-link li a p {
    width: 150px;
    height: 50px;
    position: absolute;
    top: auto;
    right: auto;
    bottom: 23px;
    left: 0;
    z-index: 1;
    font-size: 18px;
    line-height: 50px;
    color: #fff;
    text-align: center;
    background: #1d91de;
}

.section-layer5 .wzdh .wzdh-link {
    height: 50px;
    margin: 130px 0 0;
}

.section-layer5 .wzdh .wzdh-link li {
    float: left;
    margin-right: 28px;
}

.section-layer5 .wzdh .wzdh-link li a {
    font-size: 18px;
    line-height: 50px;
    color: #fff;
    text-align: left;
}

.section-layer5 .wzdh .wzdh-link li:first-child {
    margin-right: 15px;
}

/* end index.css*/
/* 底部 */
.footer {
    min-height: 190px;
    /* background-image: url("../images/footer-b.png"); */
    background-repeat: no-repeat;
    background-position: 50% 50%;
    /* background-color: transparent; */
    background: #1460a0;
}

.footer .foot-logo {
    width: 455px;
    margin: 80px 0 0;
}

.footer .lxwm {
    width: 300px;
    margin-top: 35px;
    margin-left: 115px;
}

.footer .lxwm h3 {
    font-size: 24px;
    line-height: 60px;
    color: #fff;
    text-align: center;
}

.footer .lxwm p {
    font-size: 14px;
    line-height: 28px;
    color: #fff;
    text-align: left;
}

.footer .copy {
    margin: 46px 0 0;
    font-size: 14px;
    line-height: 28px;
    color: #fff;
    text-align: left;
}

#to-top {
    width: 50px;
    height: 65px;
    position: fixed;
    top: auto;
    right: 35px;
    bottom: 150px;
    left: auto;
    z-index: 1000;
    background-image: url("../images/top.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #fff;
    border: 1px solid #ccc;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
}

#to-top:hover {
    background-color: #eee;
}

/* list.css */


.header-layer3.other .nav {
    padding-top: 22px;
}

.header-layer3.other .search {
    margin-top: 22px;
}

.decoration img {
    width: 100%;
    vertical-align: top;
}

.sidebar {
    width: 260px;
    margin: -80px 0 0;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1000;
}

.sidebar h3 {
    width: 100%;
    height: 80px;
    font-size: 30px;
    line-height: 80px;
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#66000000',endColorstr='#66000000');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(gradientType=1,startColorstr='#66000000', endColorstr='#66000000')";
}

.sidebar ul li {
    border-top: 1px solid #c8c8c8;
}

.sidebar ul li a {
    display: block;
    border-left: 5px solid #c8c8c8;
    font-size: 18px;
    line-height: 60px;
    color: #444444;
    text-align: center;
}

.sidebar ul li a.cur {
    color: #1460a0;
    border-color: #1460a0;
}

.sidebar ul li a:hover {
    color: #1460a0;
}

.main-box {
    width: 1098px;
    min-height: 444px;
}

.main-box .current {
    height: 54px;
    padding: 27px 25px 0 0;
    border-bottom: 1px solid #e4e4e4;
    position: relative;
}

.main-box .current .place {
    float: right;
    color: #aaa;
    background: #fff;
}

.main-box .current .place a {
    font-size: 14px;
    line-height: normal;
    color: #aaa;
    text-align: left;
}

.main-box .current .place a:hover {
    color: #1460a0;
}

.main-box .current h3 {
    float: right;
    padding: 4px 20px 0 15px;
    background: #fff;
    font-size: 20px;
    line-height: normal;
    color: #000033;
    text-align: left;
}

.main-box .current .line {
    width: 30px;
    height: 1px;
    background: #1460a0;
    position: absolute;
    top: auto;
    right: 0;
    bottom: -1px;
    left: auto;
    z-index: 1;
}

.list {
    padding: 15px 0 0;
}

.list li {
    height: 150px;
    margin: 24px 0;
    padding: 15px 0;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
}

.list li .date {
    width: 125px;
    padding: 18px 0 0;
    font-size: 14px;
    line-height: normal;
    color: #4e4e4e;
    text-align: center;
}

.list li .date p:first-child {
    font-size: 39px;
}

.list li .text {
    width: 780px;
}

.list li .text a {
    font-size: 18px;
    line-height: 30px;
    color: #444444;
    text-align: left;
}

.list li .text a:hover {
    color: #1460a0;
}

.list li .text .line {
    width: 54px;
    height: 2px;
    margin: 20px 0 12px;
    background: #1460a0;
}

.list li .text .info {
    font-size: 14px;
    line-height: 28px;
    color: #777;
    text-align: left;
}

.list li .more2 {
    float: right;
    width: 108px;
    height: 35px;
    margin: 50px 20px 0 0;
    border: 1px solid #1460a0;
    font-size: 14px;
    line-height: 33px;
    color: #1460a0;
    text-align: center;
}

.list li:hover {
    -webkit-box-shadow: 0px 0px 8px 0px #bbb;
    -moz-box-shadow: 0px 0px 8px 0px #bbb;
    -o-box-shadow: 0px 0px 8px 0px #bbb;
    box-shadow: 0px 0px 8px 0px #bbb;
}

.list li:hover .more2 {
    color: #fff;
    background: #1460a0;
}

/* end list.css */
/* articles.css */
.articles {
    padding: 0 0 50px;
}

.articles h1 {
    padding: 20px 0 15px;
    font-size: 22px;
    line-height: normal;
    color: #000000;
    text-align: center;
}

.articles .sub {
    margin: 0 0 20px;
    padding: 0 0 15px;
    font-size: 14px;
    line-height: 25px;
    color: #999;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.articles .content p {
    font-size: 18px;
    line-height: 42px;
    color: #000000;
    text-align: left;
    text-indent: 42px;
}

.articles .cont-page {
    margin: 20px 0 0;
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.articles .cont-page a {
    display: block;
    font-size: 16px;
    line-height: 32px;
    color: #494949;
    text-align: left;
}

.articles .cont-page a:hover {
    color: #1460a0;
}

/* end articles.css */
/*# sourceMappingURL=style.css.map */
ul.sj {
    background: #f1f9ff;
}

ul.sj li {
    border: none;
}

ul.sj li a {
    line-height: 40px;
    border-left: 5px solid #e7f5ff;
}

ul.sj li a.sj1 {
    background: #f1f9ff;
    color: #1460a0;
}
