﻿* {
    margin:0;
    padding:0;
    list-style:none;
    box-sizing:border-box;
    text-decoration:none;
}
.layout {
    width:1200px;
    margin:0 auto;
}
/*.example {
    border-top: 50px solid red;
    border-left: 100px solid transparent;*/
    /*transform: skew(20deg);*/
/*}*/
header {
    position: relative;
    z-index: 102;
}
    header.active {
        position: fixed;
        width: 100%;
        background: #f8f8f8;
    }
.example::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50px;
    width: 600px;
    height: 100%;
    background: #2d8d91;
    transform: skew(-40deg);
    z-index: -1;
}
.logo {
    overflow:hidden;
    position:relative;
    height:115px;
    padding:25px  30px;
    width:600px;
}
.logo a {
    display:block;
    height:100%;
}
.logo a img {
    height:100%;
    display:block;
}
.example::before {
    position:absolute;
    content:"";
    height:150px;
    width:15px;
    background:#000;
    transform:skew(-40deg);
    top:0;
    right:83px;
}
.header_pack {
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.navlist {
    width:760px;
    padding-right:30px;
}
.w_nav {
    display: flex;
    justify-content: space-between;
}
    .w_nav>li {
        position:relative;
    }
        .w_nav > li > div > a,
        .er_nav div a{
            display: block;
            font-weight: 600;
            font-size: 14px;
            color: #1b1b1b;
            padding: 9px 17px;
        }
        .w_nav > li:hover>div > a,
        .w_nav>.active>div>a{
            color:#2d8d91;
        }
        .w_nav > li:hover .caret {
            border-top-color:#2d8d91;
        }
        .caret {
            display: inline-block;
            width: 0;
            height: 0;
            margin-left: 2px;
            vertical-align: middle;
            border-top: 4px solid;
            border-right: 4px solid transparent;
            border-left: 4px solid transparent;
            position: absolute;
            top: 50%;
            right: 5px;
            transform: translateY(-50%);
        }
.er_nav,
.san_nav {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    background: #2d8d91;
    border: 1px solid rgba(0, 0, 0, .15);
    padding: 5px 0;
    font-size: 14px;
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    display: none;
}
    .san_nav {
       left:100%;
       top:0;
       
    }
    .er_nav li {
        position: relative;
    }
    .er_nav li a {
        display: block;
        color: #fff;
        line-height: 20px;
        padding: 15px 20px;
        font-weight: 600;
    }
    .er_nav li a:hover {
        background: rgb(-5,116,105);
    }
.bannerswiper {
    overflow:hidden;
    position:relative;
}
.bannerswiper img {
    width:100%;
    display:block;
}
.arrow {
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:40px;
    color:#fff;
    font-weight:bold;
    z-index:101;
}
.arrow_left {
    left:50px;
}
.arrow_right {
    right:50px;
}
.bannerswiper .swiper-pagination-bullet {
    background:#fff;
}
.home_plate1 {
    padding:60px 0 100px;
}
.home_plate1_title {
    font-size: 30px;
    font-weight:bold;
    text-align:center;

    color: #1F1F20;
}
.home_plate1_list {
    display:flex;
    /*justify-content:space-between;*/
    margin:30px -10px 0;
}
.home_plate1_list li {
    width:25%;
    padding:0 10px;
}
    .home_plate1_list li a {
        display:block;
        height:100%;
        border:2px solid transparent;
        padding:20px;
    }
        .home_plate1_list li a:hover {
            border-color: #E9E9E9;
        }
.inquiry_title {
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.home_plate1_list_img {
    width: 80px;
    margin: 0 auto 20px;
}
.home_plate1_list_img img {
    width:100%;
    display:block;
}
.home_plate1_list_cont h3 {
    font-size: 24px;
    margin: 10px 0 20px;
    text-align: center;
    color: #242526;
    font-weight:bold;
}
    .home_plate1_list_cont h3::after {
        content: "";
        width: 30%;
        height: 3px;
        background: #61CE70;
        display:block;
        margin:20px auto;
    }

.sercha {
    display: block;
    z-index: 0;
    transition: all .3s;
    background-image: -webkit-linear-gradient(left,#36cbbb, #2d8d91);
}

    .sercha .search_box {
        display: flex;
    }

        .sercha .search_box input {
            outline: none;
            border: 1px solid #2d8d91;
            line-height: 40px;
            width: 250px;
            padding: 0 10px;
            font-size: 16px;
            color: #333;
            background: rgba(255,255,255,.9);
        }

            .sercha .search_box input:hover,
            .sercha .search_box input:focus {
                background: #fff;
            }

        .sercha .search_box .search_bth {
            line-height: 40px;
            width: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

            .sercha .search_box .search_bth i {
                font-size: 20px;
                color: #fff;
            }
.inquiry_table {
    width:100%;
}
    .inquiry_table tr th,
    .inquiry_table tr td {
        border: none;
        padding: 5px;
        font-size: 14px;
        width:25%;
        line-height:24px;
    }
    .inquiry_table tr {
        background: rgb(240, 240, 240);
    }
    .inquiry_table tr:nth-child(2n) {
        background: #fff;
    }
    .home_plate1_list_cont p {
        font-size: 14px;
        text-align: center;
        color: #333;
    }
.home_plate1_list_cont{
    text-align:center;
}
.home_plate1_list_cont span {
    display: inline-block;
    color: #fff;
    padding: 8px 24px;
    background-color: #269bd1;
    border-radius: 20px;
    font-size: 14px;
    margin-top:10px;
}
.home_news {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px ;
}
.home_news h3 {
    font-size: 30px;
    color: #1F1F20;
    font-weight: bold;
}
.home_news::after {
    content:"";
    width:calc(100% - 150px);
    height:20px;
    display:block;
    background:url(../images/xian.svg) no-repeat center/100% 100%;
}
.volume_classify_list > li > h4 {
    color: #242526;
    font-weight: 400;
    font-size: 27px;
    letter-spacing: 0px;
    line-height: 35px;
    margin: 15px 0;
}
.home_plate2_list {
    padding: 15px 10px 10px 10px;
}
.home_plate2_list li a {
    display:block;
}
    .home_plate2_list li {
        margin-bottom:20px;
    }
    .home_plate2_list li a h3 {
        font-size: 24px;
        font-weight: bold;
        color: #54595F;
        line-height: 34px;
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
    }
    .home_plate2_list li a p {
        font-size:14px;
        line-height:24px;
        color:#aaa;
    }
    .home_plate2_list li a p span:nth-child(1)::after {
        content:"|";
        display:inline-block;
        margin:0 5px;
    }
    .home_plate2_list li a b {
        display: block;
        font-size: 15px;
        color: #3a3636;
        line-height:25px;
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
        font-weight:500;
    }
        .home_plate2_list li a:hover h3 {
            color:#2d8d91;
        }
.home_plate3 {
    padding: 55px 0;
    background: #000000;
}
.home_plate3_title {
    color: #989898;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2em;
    letter-spacing: 3.2px;
    text-align:center;
}
.home_plate3_pack {
    display:flex;
    justify-content:space-between;
    margin-top:30px;
}
    .home_plate3_pack .home_plate3_left_cont {
        width: 65%;
    }
    .home_plate3_pack .home_plate3_right_cont {
        width:30%;
    }
.home_about_cont h3 {
    font-size: 29px;
    color: #AFB0B1;
    font-weight:bold;
}
.home_about_cont p {
    font-size: 18.6px;
    color: #787D80;
    line-height:29px;
    font-weight:600;
    margin-top:15px;
}
.home_copy {
    margin-top:15px;
}
.home_copy {
    font-size: 15px;
    color: #787D80;
    font-weight:bold;
}
    .home_copy a {
        display: block;
        color: #787D80;
        margin-top:20px;
    }
.home_plate3_right_cont h3 {
    font-size: 29px;
    color: #AFB0B1;
    font-weight:600;
    margin-bottom:20px;
}
.Links_list li a {
    display: block;
    font-size: 29px;
    line-height:1.1;
    font-weight: 600;
    color: #787D80;
}
footer {
    border-bottom: 5px solid #2d8d91;
    border-top: 1px solid #f4f4f4;
    background: #ffffff;
}
footer .layout {
    display:flex;
    justify-content:center;
    padding:30px 0;
}
    footer p {
        color: #727272;
        font-weight: 400;
        font-size: 15px;
        line-height: 20px;
        margin:0 5px;
    }
footer p a {
    color:#242526;
}
        footer p a:hover {
            color:#2d8d91;
        }
.public_top {
    background: #2d8d91;
    padding: 50px 0;
    border-top: 1px solid #21202e;
}
.public_pack {
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.public_pack>div {
    width:50%;
}
.public_title {
    font-size:36px;
    color:#fff;
    font-weight:400;
}
.public_nav {
    font-size: 15px;
    color: #ffffff;
    text-align:right;
}
.public_nav a {
    color:#fff;
}
.news {
    padding:80px 0 50px;
}
.news_list li {
    margin-bottom:30px;
}
.news_list_pack {
    display:flex;
}
.news_list_left_cont {
    width:70px;
}
.date_time {
    color: #ffffff;
    font-weight: 400;
    font-size: 13px;
    padding: 12px 0 13px;
    line-height: 23px;
    text-align: center;
    background: #2d8d91;
    font-weight:bold;
}
.news_list_right_cont {
    width:calc(100% - 70px);
    padding-left:30px;
}
.news_list_left_cont a {
    display: flex;
    align-items:center;
    width: 100%;
    background-color: #2a2a2a;
    color: #d0d0d0;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    padding: 15px 0;
    justify-content:center;
}
.news_list_left_cont a i {
    background:url(../images/wh.png) no-repeat center/100% 100%;
    width:20px;
    height:20px;
    display:block;
    margin-right:5px;
}
.news_list_right_cont h4 {
    color: #727272;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.2px;
    line-height: 20px;
    margin: 0px 0 10px;
}
    .news_list_right_cont h4 a {
        color: #242526;
        padding: 5px 0px 5px 5px;
    }
.news_list_right_cont h3 {
    color: #242526;
    font-weight: 400;
    font-size: 27px;
    line-height: 35px;
    margin: 0 0 10px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.news_list_right_cont p {
    color: #727272;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 25px;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
}
.news_list li:hover h3 {
    color:#2d8d91;
}
.kit {
    padding:60px 0 100px;
}
.kit_title {
    text-align:center;
}
.kit_title h3 {
    font-size: 24px;
    /*margin-bottom: 10px;*/
    font-weight: 600;
    color: #242526;
}
    .kit_title h3::after {
        content: "";
        border-top-style: solid;
        border-top-color: #61A6CE;
        border-top-width: 3px;
        width: 20%;
        margin:30px auto 20px;
        display:block;
    }
    .kit_title p {
        font-size: 19px;
        color: #7F7F80;
        font-weight:600;
    }
.kit_list {
    padding-top:60px;
}
.kit_list_cont {
    display:flex;
    margin:0 -10px;
    flex-wrap:wrap;
}
.kit_list_cont li {
    width:33.3333%;
    padding:0 10px ;
    margin-bottom:20px;
}
    .kit_list_cont li a {
        display: block;
        padding: 60px;
        border: 2px solid transparent;
        transition:all .3s;
        text-align:center;
        height:100%;
    }
        .kit_list_cont li a:hover {
            border-color: #E9E9E9;
        }
.kit_list_img {
    width:120px;
    height:110px;
    margin:0 auto 20px;
    overflow:hidden;
}
.kit_list_img img {
    width:100%;
    max-height:100%;
    object-fit:cover;
    display:block;
    transition:all .5s;
}
.kit_list_cont li a:hover img {
    transform:scale(1.1);
}
.kit_list_cont li a:hover h3 {
    color:#2d8d91;
}
.kit_list_cont li a span {
    color: #d18426;
    display: inline-block;
    margin-bottom: 6px;
    font-size: 14px;
}
.kit_list_cont li a h3 {
    font-weight: 600;
    color: #242526;
    margin: 0 0 10px;
    font-size:24px;
}
.kit_list_cont li a p {
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
}
.score_inquiry {
    padding:60px 0;
}
.score_form {
    background:#fff;
    border-radius:20px;
    width:50%;
    margin:0 auto;
    box-shadow:0 0 15px rgba(0,0,0,.1);
    padding-bottom:50px;
}
    .score_form h3 {
        font-size: 36px;
        text-align: center;
        line-height: 46px;
        color: #2d8d91;
        font-weight: 600;
        padding: 50px 0 0;
    }
        .score_form h3 span {
            display:block;
            width:80%;
            margin:0 auto;
        }
        .score_form h3::after {
            width: 100%;
            height: 5px;
            background: #333b48;
            display: block;
            margin: 30px 0 50px;
            content: "";
        }
.score_form_list {
    padding:0 50px;
}
    .score_form_list input {
        width: 100%;
        font-size: 18px;
        line-height: 45px;
        color: #333;
        border: 1px solid #e4e4e4;
        border-radius:5px;
        outline:none;
        margin-bottom:20px;
        padding:0 15px;
    }
        .score_form_list input::-webkit-input-placeholder {
            color: #e4e4e4;
        }
.score_inquire {
    width: 160px;
    line-height: 45px;
    border-radius: 3px;
    color: #fff;
    text-align: center;
    background: #2d8d91;
    margin: 10px auto 0;
    font-size: 18px;
    cursor: pointer;
}
.score_inquire:hover {
    opacity:.8;
}
.achievement_cont {
    font-size: 18px;
    line-height: 28px;
    color: #404348;
    width:60%;
    margin:0 auto;
}
.achievement_img {
    width:146px;
    position:absolute;
    right:30px;
    bottom:120px;
}
.achievement {
    position:relative;
}
.achievement_cont span {
    display:block;
    margin-top:80px;
}
.achievement_btn {
    line-height: 45px;
    width: 100px;
    font-size: 18px;
    text-align: center;
    color: #fff;
    margin: 20px auto 0;
    border-radius: 5px;
    background: #2d8d91;
    cursor: pointer;
}
.down {
    border:2px solid #000;
    padding:20px 0;
    border-left:0;
    border-right:0;
    margin:20px 0;
}
    .down a {
        font-size: 12px;
        color: #337ab7;
        text-decoration:underline;
    }
    .down a:hover {
        text-decoration:none;
    }
        .down a:last-child {
            display: inline-block;
            background: #32373c;
            color:#fff;
            width:46px;
            line-height:25px;
            text-align:center;
            margin-left:8px;
            border-radius:15px;
        }
.serve_cont h3 {
    margin:20px 0;
}
.file-download {
    overflow: hidden;
    margin: 0 -6px;
}
    .file-download li {
        width: 50%;
        float: left;
        padding: 0 6px;
        margin-bottom:12px;
    }
        .file-download li a {
            display: flex;
            background: rgba(24, 124, 212, 3%);
            border-radius: 10px;
            padding: 22px 16px;
            align-items: center;
            justify-content: space-between;
        }
.file-img {
    width: 22px;
}
    .file-img img {
        width: 100%;
        display: block;
    }
.file-dase {
    width: 74%;
    font-size: 16px;
    line-height: 24px;
    color: #333;
    margin-left: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.file-btn {
    width:120px;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    color: #2d8d91;
    border-radius: 10px 0 10px;
}
.file-download li a:hover .file-btn {
    background:#2d8d91;
    color:#fff;
}
.file-download li a:hover .file-dase {
    color:#2d8d91;
}
.contact_title {
    font-size:36px;
    line-height:40px;
    padding-bottom:15px;
    border-bottom:2px solid #000;
    color: #727272;
    text-align:center;
    font-weight:bold;
}
.contact_text {
    margin: 30px 0 60px;
    background: #f0f0f0;
    font-size: 14px;
    line-height: 24px;
    color: #5b5b5b;
    padding:10px;
}
    .contact_text p {
        font-weight: bold;
    }
.contact_text:last-child {
    margin-bottom:0;
}
.down_object {
    margin-bottom:10px;
}
@media(max-width:1500px) {
    .layout {
        width:1000px;
    }
    .home_plate1_list {
        flex-wrap:wrap;
    }
   /* .home_plate1_list li {
        width: 33.333%;
        margin-bottom:20px;
    }*/
    .score_form {
        width:60%;
    }
}
@media(max-width:1400px) {
    .logo {
        width:400px;
        height:100px;
        padding:25px 30px;
    }
    .example::after {
        width:400px;
    }
    .w_nav > li > div > a {
        padding:9px 15px;
    }
    .caret {
        right:0px;
    }
    .home_plate1,
    .kit {
        padding: 60px 0 80px;
    }
    .home_plate1_title,
    .home_news h3,
    .home_about_cont h3,
    .home_plate3_right_cont h3,
    .Links_list li a {
        font-size: 26px;
        line-height: 36px;
    }
    .home_about_cont p {
        font-size:16px;
        line-height:26px;
    }
    .home_plate3_title,
    .public_title,
    .score_form h3,
    .contact_title {
        font-size: 30px;
        line-height: 40px;
    }
    .home_plate1_list_cont h3,
    .home_plate2_list li a h3,
    .kit_list_cont li a h3 {
        font-size: 20px;
    }
    .home_plate2_list li a b,
    footer p,
    .news_list_right_cont p,
    .news_list_right_cont h4,
    .news_list_left_cont a {
        font-size: 14px;
    }
    .news_list_right_cont h3,
    .kit_title h3 {
        font-size: 22px;
        line-height: 32px;
    }
        .kit_title h3::after {
            margin:20px auto 10px;
        }
    .kit_title p,
    .score_form_list input,
    .score_inquire,
    .achievement_btn {
        font-size: 16px;
    }
    .kit_list_cont li a{
        padding:40px;
    }
    .serve_cont h3 {
        margin:15px 0;
    }
    .contact_text {
        margin:20px 0 40px;
    }

}
@media(max-width:1300px) {
    .example::before {
        display:none;
    }
    .example::after {
        width: 300px;
        transform:skew(0deg);
        left:0;
    }
    .logo {
        width:300px;
        padding:30px;
    }
    .home_plate1_title, .home_news h3, .home_about_cont h3, .home_plate3_right_cont h3, .Links_list li a {
        font-size:22px;
        line-height:32px;
    }
    .home_plate1_list_cont h3, .home_plate2_list li a h3, .kit_list_cont li a h3 {
        font-size:18px;
    }
        .home_plate1_list_cont h3::after{
            margin:10px auto;
        }
    .home_plate1_list_cont h3 {
        margin-bottom:10px;
    }
    .home_plate1,
    .news,
    .kit {
        padding: 60px 0;
    }
    .home_plate3_title, .public_title, .score_form h3, .contact_title{
        font-size:26px;
        line-height:36px;
    }
    .home_about_cont p{
        font-size:14px;
        line-height:24px;
    }
    .home_copy {
        font-size:14px;
    }
    .kit_list {
        padding-top:30px;
    }
}
@media(max-width:1000px) {
    .layout {
        width:100%;
    }
    header {
        background:#2d8d91;
       
    }
    .iconfont {
        width: 40px;
        height: 40px;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

        .iconfont i {
            width: 100%;
            height: 100%;
            position: absolute;
        }

        .iconfont .cha {
            background: url(../images/cha.png) no-repeat center/100% 100%;
            display: none;
        }

        .iconfont .nav {
            background: url(../images/nav.png) no-repeat center/100% 100%;
        }

    .logo {
        height: 60px;
        padding: 10px 15px;
    }

    .navlist {
        position: absolute;
        width: 100%;
        top: 100%;
        left: 0;
        background: #fff;
        padding: 10px;
        border-top: 1px solid #f1f1f1;
        display: none;
        z-index: 101;
        box-shadow:0 10px 10px rgba(0,0,0,.1);
    }

    .w_nav {
        display: block;
    }

    header {
        position: relative;
    }

    .w_nav > li > a, .language_on span {
        line-height: 30px;
        text-align: center;
    }
    header.active {
        background:#2d8d91;
    }
    .w_nav > li > div > a {
        padding:5px 10px;
    }
    .er_nav {
        position:relative;
    }
    .caret {
        border-width:5px;
    }
    .bannerswiper {
        height:130px;
    }
    .bannerswiper img {
        height:100%;
        object-fit:cover;
    }
    .arrow_right {
        right:20px;
    }
    .arrow_left {
        left:20px;
    }
    .arrow {
        font-size:30px;
    }
    .logo {
        width:auto;
    }
    .home_plate1, .news, .kit {
        padding:30px 15px;
    }
    .home_plate1_title, .home_news h3, .home_about_cont h3, .home_plate3_right_cont h3, .Links_list li a,
    .home_plate3_title, .public_title, .score_form h3, .contact_title {
        font-size: 20px;
        line-height: 30px;
    }
    .home_plate1_list li {
        width:100%;
    }
    .home_news::after {
        width: calc(100% - 100px);
    }
    .home_plate1_list_cont h3, .home_plate2_list li a h3, .kit_list_cont li a h3 {
        font-size:16px;
        line-height:26px;
    }
    .home_plate3 {
        padding:30px 15px;
    }
    .home_plate3_pack {
        display:block;
    }
        .home_plate3_pack .home_plate3_left_cont,
        .home_plate3_pack .home_plate3_right_cont {
            width: 100%;
        }
        .home_plate3_pack .home_plate3_right_cont {
            margin-top:20px;
        }
    .home_plate3_right_cont h3 {
        margin-bottom:0px;
    }
    footer .layout {
        padding:10px 0;
        display:block;
        text-align:center;
    }
    .news_list_right_cont h3, .kit_title h3{
        font-size:18px;
    }
    .news_list_right_cont h3 {
        margin-bottom:5px;
    }
    .news_list_right_cont {
        padding-left:0;
        margin-top:20px;
        width:100%;
    }
    .news_list_pack {
        display:block;
    }
    .news_list_left_cont {
        width:100%;
    }
    .public_top{
        padding:25px 15px;
    }
    .public_pack{
        display:block;
    }
        .public_pack > div{
            width:100%;
        }
    .public_nav {
        text-align:left;
    }
    .down_object {
        display:none;
    }
    .down{
        padding:10px 0;
    }
    .kit_title h3::after {
        display:none;
    }
    .kit_title p, .score_form_list input, .score_inquire, .achievement_btn {
        font-size:14px;
    }
    .kit_list_cont li{
        width:100%;
    }
        .kit_list_cont li a{
            padding:20px;
        }
    .score_form {
        width:100%;
    }
    .score_inquiry {
        padding:30px 15px;
    }
    .score_form h3{
        padding-top:25px;
    }
        .score_form h3::after{
            margin:15px 0 25px;
        }
    .score_form_list{
        padding:0 25px;
    }
        .score_form_list input{
            line-height:40px;
        }
    .score_form {
        padding-bottom:25px;
    }
    .achievement_cont{
        font-size:16px;
        line-height:26px;
    }
    .achievement_img {
        width:80px;
    }
    .file-download li {
        width:100%;
    }
        .file-download li a {
            padding:15px 10px;
        }
    .er_nav li a {
        padding:10px;
    }
    .er_nav {
        width:100%;
    }
    .volume_classify_list > li > h4 {
        font-size: 18px;
        line-height:28px;
        margin:5px 0;
    }
    .inquiry_title {
        flex-wrap: wrap;
        margin-bottom:20px;
    }
    .intable {
        overflow:auto;
        width:100%;
    }
    .intable table {
        width:300%;
        max-width:300%;
    }
    .san_nav {
        position:relative;
        left:0;
    }
}