
.no_padding {
    padding: 0;
}

.header {
    position: relative;
    z-index: 1000;
    background: #ffffff;
    transition: all .3s;
}

.indexHeader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 10;
    background: transparent;
    transition: all .3s;
}

.indexHeader.is_stuck {
    background: #efefef;
    transition: all .3s;
}

.header.is_stuck {
    transition: all .3s;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.header .conBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 19px;
    transition: all .3s;
}

.header .logoBox {
    /*padding-left: 100px;*/
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
}

.header .logoBox a {
    display: block;
    line-height: 0;
    margin-bottom: 5px;
}

.header .logoBox .t {
    padding-left: 10px;
}

.header .logoBox p {
    font-size: 18px;
    font-family: Lato;
    font-weight: 400;
    color: #282828;
    line-height: 1.6;
    text-align: left;
}

.header .header_text {
    margin-left: 10px;
}

.indexHeader .logoBox p {
    color: #ffffff;
}

.indexHeader.is_stuck .logoBox p {
    color: #282828;
}

.header .headerConBox {
    display: flex;
    flex-direction: column;
    position: relative;
}

.header_top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 40px;
    /*padding-bottom: 6px;*/
}

.header .nav_list {
    font-size: 0;
    line-height: 0;
    position: relative;
}

.header .nav_list > li {
    position: relative;
    display: -moz-inline-stack;
    display: inline-block;
    *display: inline;
    vertical-align: top;
    zoom: 1;
    text-align: center;
    margin-left: 50px;
    transition: all .3s;
}

.header .nav_list > li:first-child {
    margin-left: 0;
}

.header .nav_list > li > a {
    display: block;
}

.header .nav_list > li > a > span {
    display: inline-block;
    line-height: 66px;
    text-align: center;
    font-size: 18px;
    color: #171717;
    font-weight: 700;
    position: relative;
    transition: all .3s;
}

/*.header .nav_list > li:last-child > a > span,*/
/*.header.indexHeader.is_stuck .nav_list > li:last-child > a > span{*/
/*    color: #ffffff;*/
/*    background: #1994d9;*/
/*    padding: 0 20px;*/
/*    -webkit-border-radius: 30px;*/
/*    -moz-border-radius: 30px;*/
/*    border-radius: 30px;*/
/*}*/
.header.indexHeader .nav_list > li > a > span {
    color: #ffffff;
}

.header.indexHeader.is_stuck .nav_list > li > a > span {
    color: #171717;
}

.header .nav_list > li.active > a > span,
.header .nav_list > li.on > a > span,
.header.indexHeader .nav_list > li.active > a > span,
.header.indexHeader .nav_list > li.on > a > span,
.header.indexHeader.is_stuck .nav_list > li.active > a > span,
.header.indexHeader.is_stuck .nav_list > li.on > a > span {
    color: #48b63a;
    /*text-decoration: underline;*/
}

/*.header .nav_list > li:last-child > a > span, .header.indexHeader.is_stuck .nav_list > li:last-child > a > span {*/
/*color: #ffffff;*/
/*background: #b6121a;*/
/*padding: 0 20px;*/
/*-webkit-border-radius: 30px;*/
/*-moz-border-radius: 30px;*/
/*border-radius: 30px;*/
/*}*/

/*.header .nav_list > li:last-child.active > a > span,*/
    /*!*.header .nav_list > li:last-child.on > a > span,*!*/
/*.header.indexHeader.is_stuck .nav_list > li:last-child.active > a > span,*/
/*.header.indexHeader.is_stuck .nav_list > li:last-child.on > a > span {*/
    /*color: #ffffff;*/
    /*background: #1ea2de;*/
/*}*/

.header .nav_list > li.active > a > span:after, .header .nav_list > li.on > a > span:after, .header.indexHeader .nav_list > li.active > a > span:after, .header.indexHeader .nav_list > li.on > a > span:after, .header.indexHeader.is_stuck .nav_list > li.active > a > span:after, .header.indexHeader.is_stuck .nav_list > li.on > a > span:after {
    width: 100%;
}

.header .nav_list > li > a > span:after {
    content: '';
    width: 0%;
    height: 6px;
    background: #48b63a;
    position: absolute;
    bottom: 0;
    transition: all 0.5s;
    left: 50%;
    transform: translateX(-50%);
}

.header .nav_list > li > a > i {
    display: inline-block;
    vertical-align: top;
    width: 15px;
    height: 46px;
    line-height: 46px;
    -moz-transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -ms-transition: all linear .3s;
    transition: all .3s;
}

.header.indexHeader .nav_list > li > a > i {
    color: #ffffff;
}

.header.indexHeader.is_stuck .nav_list > li > a > i {
    color: #171717;
}

.nav_list > li:hover i {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}

.nav_list > li {
    position: relative;
}

.nav_list > li .dropdown_menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 170px;
    display: none;
    z-index: 1;
    padding: 20px 5px;
    background: rgba(255, 255, 255, 1);
    -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
}

.nav_list .dropdown_menu li {
    width: 100%;
}

.nav_normal .dropdown_menu li.Three_menu > ul {
    position: absolute;
    top: 0;
    left: 100%;
    background: #ffffff;
    padding: 10px 0;
    min-width: 160px;
    z-index: 3;
    display: none;
    -webkit-box-shadow: 0 0 5px 0 rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 20%);
}

.nav_list .dropdown_menu li a {
    display: block;
    letter-spacing: 0;
    line-height: 34px;
    font-size: 16px;
    color: #000000;
    text-align: left;
    padding: 0 20px;
    white-space: nowrap;
}

.nav_list .dropdown_menu li a:hover {
    color: #4bb83c;
    text-decoration: underline;
}

.droplist_tile {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1;
    background: #ffffff;
}

.drop_tile {
    display: none;
}

.drop_tile .conBox {
    padding: 30px 0 10px;
}

.drop_tile .conBox .itemBox {
    display: flex;
    flex-wrap: wrap;
}

.drop_tile .conBox .item {
    width: 32.5%;
    margin-right: 1.25%;
    display: flex;
    align-items: center;
    border: 1px solid #eeeeee;
    transition: all .3s;
}

.drop_tile .conBox .item:hover {
    background: #1ea2de;
    transition: all .3s;
}

.drop_tile .conBox .item:nth-of-type(3n) {
    margin-right: 0;
}

.drop_tile .conBox .item .img {
    width: 34%;
    float: left;
    border-right: 1px solid #eeeeee;
}

.drop_tile .conBox .item .text {
    position: relative;
    width: 66%;
    float: left;
    padding: 10px 20px;
}

.drop_tile .conBox .item .text a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.drop_tile .conBox .item .text h3 {
    font-size: 18px;
    color: #1ea2de;
    font-weight: bold;
    padding-bottom: 5px;
    transition: all .3s;
}

.drop_tile .conBox .item .text p {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    transition: all .3s;
}

.drop_tile .conBox .item:hover .text h3,
.drop_tile .conBox .item:hover .text p {
    color: #ffffff;
    transition: all .3s;
}

.header_search_box {
    right: 134px;
}

.header_search_box,
.header-facebook,
.header-LINK,
.header-YTB {
    position: absolute;
    right: 0px;
    top: 0;
    width: 32px;
    height: 46px;
    overflow: hidden;
    z-index: 10;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    transition: all .3s;
}

.header_search_box.active {
    width: 260px;
    background: #48b63a;
    transition: all .3s;
}

.header_search_box a,
.header-facebook a,
.header-LINK a,
.header-YTB a {
    line-height: 0;
    width: 28px;
    height: 46px;
    text-align: right;
    display: block;
    position: relative;
    float: right;
    z-index: 10;
}

.header_search_box {
    top: -12px;
}

.header_search_box a:before,
.header-facebook a:before,
.header-YTB a:before,
.header-LINK a:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 46px;
    text-align: center;
    font-family: "iconfont", sans-serif;
    font-size: 18px;
    color: #171717;
}

.indexHeader.is_stuck .header-facebook a:before {
    color: #171717;
}

.indexHeader.is_stuck .header-YTB a:before {
    color: #171717;
}

.indexHeader.is_stuck .header-LINK a:before {
    color: #171717;
}

.header_search_box a:before {
    content: '\e601';
}

.header-facebook a:before {
    content: '\e641';
}

.header-YTB a:before {
    content: '\e8d5';
}

.header-LINK a:before {
    content: '\e621';
}

.header-facebook {
    right: 0;
}

.header-YTB {
    right: 40px;
}

.header-LINK {
    right: 80px;
}

.indexHeader .header_search_box a:before {
    color: #ffffff;
}

.indexHeader.is_stuck .header_search_box a:before {
    color: #171717;
}

.search_form {
    position: absolute;
    top: 0;
    right: 32px;
    width: 0;
    display: block;
    z-index: -1;
    transition: all .3s;
}

.header_search_box.active .search_form {
    width: 220px;
    z-index: 9;
    transition: all .3s;
}

.search_form .info {
    width: 100%;
    padding-right: 0;
    position: relative;
}

.header_search_box.active .search_form .info {
    padding-right: 32px;
}

.search_form .info:before {
    position: absolute;
    content: '\e601';
    top: 0;
    right: 0;
    width: 32px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    font-family: "iconfont", sans-serif;
    font-size: 16px;
    color: #ffffff;
}

.search_form input[type="text"] {
    width: 100%;
    height: 46px;
    background: 0 0;
    border: 0;
    text-indent: 10px;
    font-size: 16px;
    color: #ffffff;
}

.search_form input[type=text]::-webkit-input-placeholder {
    color: #ffffff;
}

.search_form input.btn_search {
    width: 32px;
    height: 46px;
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    font-size: 0;
    background: none;
    cursor: pointer;
    z-index: 2;
}

.header_search_box a.active:before {
    content: '\eaf2';
    color: #ffffff;
    transition: all .3s;
}

.langBox {
    position: relative;
    display: inline-block;
    padding: 0 18px;
    border-right: 1px solid #eeeeee;
    /*border-left: 1px solid #eeeeee;*/
}

.langBox ul {

}

.header-contact {
    display: flex;
}

.header-contact .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-right: 1px solid #eeeeee;
}

.header-contact .contact-item a {
    transition: all 0.5s;
}

.header-contact .contact-item:hover a {
    color: #48b63a;
    text-decoration: underline;
}

.header-contact .contact-item .icon-shouji2,
.header-contact .contact-item .icon-xinfeng2 {
    /*background: #000000;*/
    font-size: 18px;
    color: #000000;
    margin-right: 10px;
}

.langBox .icon-diqiu,
.langBox .icon-xiala {
    font-size: 20px;
}

.langBox span {
    display: inline-block;
    line-height: 24px;
    text-align: center;
    color: #282828;
    font-family: "helveticaLight", sans-serif;
    cursor: pointer;
    transition: all .3s;
    font-size: 18px;
}

.langBox span:hover {
    background: #ffffff;
    color: #000000;
    transition: all .3s;
}

.langBox ul {
    position: absolute;
    left: 13px;
    z-index: 111;
    background: #000000;
    display: none;

}

.langBox ul a {
    line-height: 28px;
    padding: 0 10px;
    color: #ffffff;
    font-family: "helveticaLight", sans-serif;
    background: #000000;
    display: block;
    text-align: center;
}

.langBox ul a:hover {
    background: #48b63a;
    color: #ffffff;
}

.header.indexHeader .langBox span {
    color: #ffffff;
}

.header.indexHeader.is_stuck .langBox span {
    color: #171717;
}

.indexSlick .slick-dots li {
    width: 8px;
    height: 8px;
    border-radius: 18%;
}

.m_header {
    display: none;
}

.footer_box .footerOther {
    background: #0a3479;
    padding: 45px 0;
}

.footer_box .footerOther .textBox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_box .footerOther .textBox .text p {
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
}

.footer_box .footerOther .textBox .text p a {
    display: inline-block;
    margin-left: 20px;
    font-size: 20px;
    font-weight: 600;
    width: 215px;
    line-height: 52px;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #1ea2de;
}

.footer_box .footerOther .textBox .text p a:hover {
    background: #1994d9;
}

.footer_box .footerOther .textBox .footerShare {
    margin-left: 20px;
}

.footer_box .footerOther .textBox .footerShare a {
    margin-left: 10px;
    display: inline-block;
    line-height: 0;
    text-align: center;
}

.footer_box .fast_navigation {
    overflow: hidden;
    padding: 60px 0 26px;
    background: #ffffff;
    border-top: 2px solid #EDEDED;
}

.footer_box .fast_navigation .itemBox {
    display: flex;
    justify-content: space-between;
}

.footer_box .fast_navigation .item {
    padding-right: 10px;
}

.footer_box .fast_navigation .item:last-child {
    padding-right: 0;
}

.footer_box .fast_navigation .item:nth-of-type(1) {
    width: 105px;
}

.footer_box .fast_navigation .item:nth-of-type(2) {
    width: 325px
}

.footer_box .fast_navigation .item:nth-of-type(3) {
    width: 120px;
}

.footer_box .fast_navigation .item:nth-of-type(4) {
    width: 560px;
}

.footer_box .fast_navigation .img {
    line-height: 0;
    padding-bottom: 10px;
}

.footer_box .fast_navigation h3 {
    color: #ffffff;
    margin-bottom: 4px;
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
}

.footer_box .fast_navigation li {
    font-size: 16px;
    color: #3C3C3C;
    line-height: 1.8;
}

.footer_box .fast_navigation li a:hover {
    color: #48b63a;
    text-decoration: underline;
}

.footer_box .footer_copyright {
    padding: 25px 0;
    background: #404040;
    /*border-top: 1px solid #2c4b84;*/
}

.footer_box .footer_copyright .text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_box .footer_copyright .text * {
    display: inline;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.5em;
}

.footer_box .footer_copyright .text a.sitemap {
    margin: 0 5px;
}

.footer_box .footer_copyright .text a:hover {
    text-decoration: underline;
    color: #48b63a;
}

.footer_box .fast_navigation .footerInfo li {
    position: relative;
    /*padding-left: 25px;*/
    /*margin-bottom: 6px;*/
}

.footer_box .fast_navigation .footerInfo li:nth-child(3) {
    padding-bottom: 16px;
}

.footer_box .fast_navigation .footerInfo li:nth-child(4) {
    padding-top: 20px;
    border-top: 1px dashed rgba(83, 83, 83, 0.2);
}

.footer_box .fast_navigation li em {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    color: #e0e0e0;
}

.footer_box .fast_navigation h3 {
    font-size: 18px;
    color: #343436;
    font-weight: 700;
    padding-bottom: 20px;
}

.footer_box .fast_navigation .footerForm .info {
    margin-bottom: 10px;
    width: 48%;
    line-height: 0;
    position: relative;
}

.footer_box .fast_navigation .footerForm .tips {
    display: block;
    color: #ff0000;
    font-size: 12px;
    line-height: 14px;
}

.footer_box .fast_navigation .footerForm textarea::-webkit-input-placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #999999 !important;
}

.footer_box .fast_navigation .footerForm input::-webkit-input-placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #999999 !important;
}

.footer_box .fast_navigation .footerForm input[type="text"],
.footer_box .fast_navigation .footerForm textarea {
    width: 100%;
    height: 50px;
    /*background: #0a3479;*/
    border: 1px solid rgba(238, 238, 238, 0.2);
    padding: 0 10px;
    font-size: 16px;
    color: #000000;
    font-weight: 300;
    border-bottom: 1px solid #000000;
}

.footer_box .fast_navigation .footerForm input[type="text"]::placeholder,
.footer_box .fast_navigation .footerForm textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-weight: 400;
}

.footer_box .fast_navigation .footerForm .info.w100 {
    width: 100%;
}

.footer_box .fast_navigation .footerForm textarea {
    resize: none;
    width: 100%;
    height: 86px;
    padding: 6px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    margin-top: 25px;
}

.footer_box .fast_navigation .footerForm input[type="submit"] {
    color: #48B63A;
    margin-top: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all .3s;
    width: 140px;
    height: 33px;
    background: #ffffff;
    border: 2px solid #259B1A;
}

.footer_box .fast_navigation .footerForm input[type="submit"]:hover {
    opacity: .85;
    transition: all .3s;
}

.footer_box .footer_contact {
    padding: 36px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: #1a3e80;
}

.footer_box .footer_contact p {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
}

.footer_box .footer_contact a {
    width: 163px;
    height: 48px;
    line-height: 48px;
    background: #A52826;
    border-radius: 24px;
    font-size: 18px;
    font-family: Lato;
    font-weight: 900;
    color: #FFFFFF;
    text-align: center;
    margin-left: 14px;
}

.footer-icon {
    display: flex;
    justify-content: center;
    background: #1d1d1d;
}

.footer-icon .icon-facebook {
    font-size: 16px;
    color: #FFFFFF;
}

.footer_box .footerShare {
    padding-bottom: 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.footer_box .footerShare a {
    /*margin: 0 8px;*/
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: #ffffff;
    border-radius: 6px;
    margin-bottom: 13px;
    display: flex;
    align-items: center;
}

.footer_box .footerShare span {
    margin-left: 18px;
}

.footer_box .footerShare em {
    color: #000000;
    font-size: 24px;
    transition: all .3s;
}

.footer_box .footerShare a:hover em {
    color: #48b63a;
    transition: all .3s;
}

.footer_box .footerShare a:hover span {
    color: #48b63a;
    transition: all .3s;
}

.footer_copyright .t > img {
    margin-left: 6px;
}

.footerForm form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.indexHeader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 10;
    background: transparent;
    transition: all .3s;
}

.indexHeader .header-facebook a:before,
.indexHeader .header-YTB a:before,
.indexHeader .header-LINK a:before {
    color: #FFFFFF;
}

/*banner*/
.indexSlick .slick-prev,
.indexSlick .slick-next {
    width: 60px;
    height: 60px;
    background: none;
    z-index: 10;
}

.indexSlick .slick-prev:before {
    width: 60px;
    height: 60px;
    line-height: 60px;
    top: 0;
    left: 0;
    text-align: center;
    position: absolute;
    content: '\e660';
    font-family: "iconfont", sans-serif;
    color: #ffffff;
    font-size: 40px;
    text-shadow: 3px 5px 2px rgba(0, 0, 0, 0.2);
}

.indexSlick .slick-next:before {
    width: 60px;
    height: 60px;
    line-height: 60px;
    top: 0;
    left: 0;
    text-align: center;
    position: absolute;
    content: '\e608';
    font-family: "iconfont", sans-serif;
    color: #ffffff;
    font-size: 40px;
    text-shadow: 0 5px 0 rgba(0, 0, 0, 0.2);
}

.indexSlick .slick-prev:hover:before,
.indexSlick .slick-next:hover:before {
    color: #db4c3d;
}

.indexSlick .slick-dots {
    left: auto;
    right: 70px;
    top: 0;
    bottom: 0;
    width: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}

.indexSlick .slick-dots li {
    background: rgba(255, 255, 255, .5);
    width: 2px;
    height: 20px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin: 5px 0;
}

.indexSlick .slick-dots li.slick-active {
    height: 40px;
    background: rgba(255, 255, 255, 1);
}

.index2 {
    padding: 100px 0;
}

.index2 .title,
.index3 .title,
.index4 .title,
.index5 .title,
.index7 .title {
    text-align: center;
}

.index2 .title h2,
.index3 .title h2,
.index4 .title h2,
.index5 .title h2,
.index6 .title h2,
.index7 .title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #3C3C3C;
    background: url("../image/line1.png") no-repeat bottom center;
}

.index2 .content {
    margin-top: 24px;
}

.index2 .content p {
    font-size: 18px;
    padding: 0 20px;
    font-weight: 400;
    color: #3C3C3C;
    line-height: 36px;
}

.index2 .content .context {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 49% 49%;
    justify-content: space-between;
    grid-row-gap: 40px;
}

.index2 .content .context .item {
    position: relative;
    transition: all 0.5s;
}

.index2 .content .context .item .text {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 0;
    transition: all 0.5s;
}

.index2 .content .context .item .text p {
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    transition: all 0.5s;
}

.index2 .content .context .item:hover {
    box-shadow: 0px 7px 8px 1px rgba(9, 1, 3, 0.48);
}



.index2 .content .context .item img {
    transition: all 0.5s;
}

.index2 .content .context .item .img {
    overflow: hidden;
}

.index2 .content .context .item:hover img {
    transform: scale(1.2);
}

.index3 {
    background: url("../image/index3img11.jpg") no-repeat center;
    padding: 42px 0;
}

.index3 .conBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.index3 .conBox .conLeft {
    background: #ffffff;
    width: 50%;
    padding: 24px;
    display: grid;
    grid-template-columns: 50% 50%;
}

.index3 .conBox .conLeft .item {
    padding: 35px 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.index3 .conBox .conLeft .item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #3C3C3C;
    margin-top: 28px;
}

.index3 .conBox .conLeft .item .img {
    min-height: 44px;
}

.index3 .conBox .conLeft .item ul li {
    font-size: 16px;
    margin-top: 10px;
    font-weight: 400;
    color: #3C3C3C;
    list-style: initial;
}

.index3 .conBox .conLeft .item ul {
    margin-top: 13px;
}

.index3 .conBox .conLeft .item:nth-child(2n-1) {
    padding-right: 55px;
    padding-left: 19px;
}

.index3 .conBox .conLeft .item:nth-child(1) {
    border-right: 1px #CECECE solid;
    border-bottom: 1px #CECECE solid;
}

.index3 .conBox .conLeft .item:nth-child(2) {
    border-bottom: 1px #CECECE solid;
}

.index3 .conBox .conLeft .item:nth-child(3) {
    border-right: 1px #CECECE solid;
}

.index3 .conBox .conLeft .item:nth-child(2n) {
    padding-right: 10px;
    padding-left: 55px;
}

.index3 .conBox .conLeft {
    width: 57%;
    padding: 24px;
}

.index3 .conBox .conRight {
    width: 34%;
}

.index3 .title {
    text-align: left;
}

.index3 .title h2 {
    background: url('../image/line1.png') no-repeat bottom left;
}

.index3 .conRight .content {
    margin-top: 10px;
}

.index3 .conRight .content .item {
    margin-top: 46px;
    background: url("../image/index3icon5.png") no-repeat left;
    height: 75px;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.index3 .conRight .content .item p {
    font-size: 20px;
    font-weight: 500;
    color: #3C3C3C;
}

.learn {
    display: block;
    font-size: 16px;
    width: 155px;
    line-height: 43px;
    text-align: center;
    height: 43px;
    border: 2px solid #48B63A;
    border-radius: 22px;
    font-weight: 500;
    color: #48B63A;
    margin-top: 27px;
    transition: all 0.5s;
}

.learn:hover {
    background: #48B63A;
    color: #ffffff;
}

.index4 {
    padding: 103px 0 92px;
}

.index4 .content > p {
    font-size: 18px;
    margin-top: 30px;
    font-weight: 400;
    color: #3C3C3C;
    line-height: 36px;
}

.index4 .context .index4slick {
    padding: 76px 0 35px;
    border-bottom: 1px solid #9B9B9B;
}

.index4 .context .index4slick .item {
    text-align: center;
    /*padding: 0 24px;*/
    height: 50px;
    line-height: 50px;
    transition: al 0.5s;
}

.index4 .context .item p {
    font-size: 20px;
    font-weight: 500;
    color: #100F0F;
    transition: al 0.5s;
}

.index4slick div.slick-current {
    background: #4088d1;
    border-radius: 25px;
}

.index4slick .item.slick-current p {
    color: #ffffff;
}

.index4SlickNav {
    margin-top: 38px;
}

.index4SlickNav .slick-dots li.slick-active {
    background-color: #48b63a;
}




.index4 .learn {
    margin: auto;
    margin-top: 83px;
}

.index5 .conBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.index5 .conBox .conLeft,
.index5 .conBox .conRight {
    width: 48%;
    position: relative;
}

.index5 .conBox .conLeft .title p {
    font-size: 18px;
    font-weight: 400;
    color: #3C3C3C;
    margin-top: 50px;
    line-height: 36px;
    text-align: left;
}

.index5 .learn {
    margin-top: 226px;
}


.index5 .conLeft .content .item h3 {
    font-size: 30px;
    font-weight: 700;
    color: #48B63A;
    display: inline-block;
}

.index5 .conLeft .content .item p {
    font-size: 18px;
    font-weight: 400;
    margin-top: 35px;
    color: #3C3C3C;
}

.index6 {
    margin-top: 78px;
    background: url("../image/index6img11.jpg") no-repeat center;
    height: 194px;
}

.index6 .conBox {
    display: flex;
    height: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.index6 p {
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 12px;
    margin-right: 50px;
    text-shadow: 0px 12px 18px rgba(58, 58, 58, 0.6);
}

.index6 .learn {
    margin-top: 0px;
}

.index7 {
    padding: 80px 0 72px;
}

.index7 .content {
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
}

.index7 .content .conLeft,
.index7 .content .conRight {
    width: 46.6%;
}

.index7 .content .conLeft {
    background: #FFFFFF;
    box-shadow: 0px 0px 21px 0px rgba(4, 0, 0, 0.15);
}

.index7 .content .conLeft .text {
    padding: 40px 32px 40px 30px;
}

.index7 .conLeft .newHot {
    display: grid;
    grid-template-columns: 70% 20%;
    justify-content: space-between;
    align-items: center;
}

.index7 .conLeft .newHot h3 {
    font-size: 24px;
    font-weight: 500;
    color: #343436;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.index7 .conLeft .newHot span {
    font-size: 14px;
    font-weight: 400;
    color: #B3B3B3;
    text-align: right;
}

.index7 .conLeft .text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: #7C7C7C;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-top: 30px;
}

.index7 .conLeft .text a {
    display: block;
    margin-top: 50px;
    font-size: 18px;
    font-weight: 500;
    color: #48B63A;
}

.index7 .learn {
    margin: auto;
    margin-top: 48px;
}

.index7 .conRight .item {
    display: flex;
    justify-content: space-between;
}

.index7 .conRight .item .img {
    width: 36%;
}

.index7 .conRight .item .text {
    width: 68%;
    padding: 12px 40px 6px 28px;
}

.index7 .conRight .item .text h3 {
    font-size: 24px;
    font-weight: 500;
    color: #343436;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.index7 .conRight .item .text span {
    font-size: 14px;
    font-weight: 400;
    color: #B3B3B3;
    margin: 15px 0 38px;
    text-align: right;
    display: inline-block;
}

.index7 .conRight .item .text p {
    font-size: 16px;
    font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: #9E9E9E;
}



.ability2 {
    padding: 116px 0 100px;
}

.ability3 .title h2 {
    color: #000000;
}

.ability2 .content {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

.ability2 .content .conLeft .item {
    display: flex;
}

.ability2 .content .conLeft .item .dian {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20px;
}

.ability2 .content .conLeft .item .dian p {
    width: 13px;
    height: 13px;
    background: #C2C2C2;
    border-radius: 50%;
}

.ability2 .content .conLeft .item .dian span {
    width: 1px;
    height: 55px;
    background: #C2C2C2;
    display: inline-block;
}

.ability2 .content .conLeft .item .text p {
    font-size: 18px;
    font-weight: 400;
    color: #868686;
    margin-top: -4px;
    margin-left: 30px;
}

.ability2 .content .conLeft {
    padding-top: 15px;
    width: 20%;
}

.ability2 .content .conLeft .item {
    cursor: pointer;
}

.ability2 .content .conLeft .item.on .dian p {
    width: 20px;
    height: 20px;
    background: #259B1A;
    position: relative;
}

.ability2 .content .conLeft .item.on .text p {
    font-size: 24px;
    font-weight: 500;
    color: #3C3C3C;
}

.ability2 .content .conLeft .item.on .dian p:after {
    content: '';
    width: 34px;
    height: 34px;
    background: rgba(157, 208, 153, 0.5);
    position: absolute;
    top: -7px;
    left: -7px;
    border-radius: 50%;
    animation-name: example;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.ability2 .content .conRight {
    width: 80%;
}

.ability2 .content .conRight .text p {
    font-size: 18px;
    font-weight: 400;
    color: #3C3C3C;
    line-height: 36px;
}

.ability2 .content .conRight .img {
    margin-top: 30px;
}

.ability2 .content .conRight .item {
    display: none;
}

.ability2 .content .conRight .item.on {
    display: block;
}

.ability3 {
    padding: 108px 0 146px;
    background: url("../image/ability3imgs.png") no-repeat center;
}

.ability3 .content p {
    margin-top: 50px;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 36px;
}


.caseDel1 .conBox {
    display: flex;
}

.caseDel1 .conRight {
    width: 35%;
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    justify-content: center;
    margin-left: 40px;
}

.caseDel1 .conRight p {
    font-size: 18px;
    font-weight: 400;
    color: #3C3C3C;
    line-height: 36px;
    margin: 47px 0 120px;
}

.caseDel1 a {
    margin-top: 0;
}

.caseDel2 {
    padding: 90px 0 82px;
    background: #F3F3F3;
}

.caseDel2 .conBox {
    display: grid;
    grid-template-columns: 36% 58%;
    justify-content: space-between;
    align-items: center;
}

.caseDel2 .conBox .text ul {
    margin-top: 38px;
}

.caseDel2 .conBox .text li {
    font-size: 18px;
    font-weight: 400;
    color: #3C3C3C;
    line-height: 36px;
}

.caseDel3 {
    margin-top: 97px;
}

.caseDel3 .content {
    margin-top: 54px;
    display: grid;
    grid-template-columns: 58% 40%;
    justify-content: space-between;
    align-items: center;
}

.caseDel3 .slider_table td {
    padding: 21px 0 16px 16px;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
}

.caseDel3 .slider_table tr:nth-child(2n) td {
    background: #F3F3F3;
}

.caseDel3 .slider_table td, .caseDel3 .slider_table th {
    border: 1px solid #DFDFDF;
}

.caseDel3 .conTab {
    height: 29vw;
    background: #FFFFFF;
    border: 1px solid #DFDFDF;
    box-shadow: 0px 5px 13px 0px rgba(31, 31, 31, 0.23);
    display: flex;
    align-items: center;
    justify-content: center;
}

.caseDel3 .conTab .img {
    display: none;
}

.caseDel3 .conTab .img.on {
    display: block;
}

.caseDel3 .caseTab {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 33%);
    justify-content: space-between;
}

.caseDel3 .caseTab .img {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    height: 9.5vw;
    border: 1px solid #DFDFDF;
    cursor: pointer;
}

.caseDel3 .caseTab .img.on {
    border: 1px solid #48b63a;
}

.caseDel4 {
    padding: 128px 0 10px;
}

.caseDel4 .content {
    margin-top: 88px;
}

.caseDel4 .content .item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 67px;
}

.caseDel4 .content .item:nth-child(2) {
    flex-direction: row-reverse;
}

.caseDel4 .content .item .text {
    width: 56%;
}

.caseDel4 .content .item .text h3 {
    font-size: 24px;
    font-weight: 500;
    color: #3C3C3C;
}

.caseDel4 .content .item .text p {
    font-size: 16px;
    font-weight: 400;
    color: #3C3C3C;
    line-height: 32px;
    margin-top: 36px;
}

.caseDel4 .content .item .img {
    width: 40%;
}

.caseDel5 {
    background: url("../image/caseDel6Img1.jpg") no-repeat center;
    height: 225px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.caseDel5 .text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.caseDel5 .learn {
    margin-top: 0;
    margin-left: 20px;
}

.caseDel5 .text span {
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
}




.contact2 .contactForm .info input[type="submit"] {
    display: inline-block;
    width: 138px;
    height: 52px;
    background: #259B1A;
    border: 0;
    font-size: 16px;
    color: #ffffff;
    letter-spacing: 3px;
    cursor: pointer;
    margin-top: 40px;
    transition: all .3s;
}

.contact2 .contactForm .info input[type="submit"]:hover {
    opacity: 0.9;
    transition: all .3s;
}

.contact2 .imgVerifyCode img {
    margin-top: 8px;
    margin-right: 8px;
}

input:disabled + label { /*禁用的指针*/
    cursor: not-allowed
}

.Checkbox input {
    display: none
}

.Checkbox label {
    padding: 0 16px 0 0;
    display: inline-block !important;
    cursor: pointer;
    position: relative
}

.Checkbox label:before {
    box-sizing: border-box;
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #999;
    margin-right: 8px;
    vertical-align: middle;
    display: inline-block;
    transition: 0.1S;
}

.Checkbox label:hover:before {
    border-color: #48b63a;
}

.Checkbox input:disabled + label:before {
    background-color: #CCC;
    border-color: #999;
    opacity: 0.5;
}

.Checkbox input:disabled + label {
    opacity: 0.5;
}

.Checkbox label:before {
    background: url('../image/ico_tick.svg') no-repeat center;
    background-size: 0;
    border-radius: 4px;
    transition: 0.2S;
}

.Checkbox input:checked + label:before {
    background-color: #48b63a;
    background-size: 16px;
    border-color: #48b63a;
}

.Checkbox span {
    display: inline-block;
    margin-top: 26px;
    margin-right: 54px;
}

.Checkbox span label {
    font-size: 16px;
    font-weight: 400;
    color: #3C3C3C;
}

.form-tip p {
    font-size: 14px;
    font-weight: 400;
    color: #111111;
    line-height: 24px;
}

.form-tip p a {
    color: #ff5656;
}

.contactForm .updateList {
    margin: 36px 0;
}

.contactForm .update {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.contactForm .update input {
    opacity: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.contactForm .textName {
    font-size: 16px;
    margin-left: 20px;
    font-weight: 400;
    color: #666666;
}

.contactForm .update .updateBao {
    position: relative;
    width: 174px;
    height: 52px;
    background: #EDEDED;
    border: 1px solid #D3D3D3;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
}

.attachmentAddBtn p {
    font-size: 16px;
    cursor: pointer;
    font-weight: 400;
    color: #259B1A;
    margin-bottom: 36px;
}

.live1 {
    margin: 46px 0;
}

.live1 .conBox {
    display: grid;
    grid-template-columns: 70% 30%;
}

.live1 .conLeft {
    width: 100%;
}

.live1 .conLeft .video_title p {
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    padding: 19px 0 14px 25px;
    background: #383838;
    border-radius: 15px 15px 0px 0px;
}

.live1 .conRight-top {
    height: 62px;
    background: #383838;
    display: flex;
    border-radius: 15px 15px 0px 0px;
    overflow: hidden;
}

.live1 .conRight-top .conRightTitle {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #383838;
    cursor: pointer;
}

.live1 .conRight-top .conRightTitle.on {
    background: #48b63a;
}

.live1 .conRight-top .conRightTitle p {
    color: #FFFFFF;
    font-size: 18px;
}

.live1 .conRight-head {
    height: 600px;
    background: #383838;
    padding: 10px 10px 26px 23px;
    border-radius: 0px 0px 15px 15px;

}

.live1 .conRight-head .contain {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    padding-right: 13px;
}

.live1 .conRight-head .videoList {
    padding-bottom: 23px;
    display: none;
}

.live1 .conRight-head .videoList.on {
    display: block;
}

.live1 .conRight-head .contain::-webkit-scrollbar {
    width: 4px;
    /*height: 4px;*/
}

.live1 .conRight-head .contain::-webkit-scrollbar-thumb {
    position: absolute;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #FFFFFF;
    left: 10px;
}

.live1 .conRight-head .contain::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: #48b63a;

}

.video-bottom {
    background: #383838;
    border-radius: 0px 0px 15px 15px;
    height: 62px;
}

.introduct h3 {
    font-size: 24px;
    font-weight: 500;
    color: #3C3C3C;
    margin: 46px 0 18px;
}

.introduct p {
    width: 78%;
    font-size: 16px;
    font-weight: 400;
    color: #3C3C3C;
    line-height: 2;
}

.conRight-head .item {
    width: 100%;
    margin: 14px 0;

}

.conRight-head .item a {
    position: relative;
    display: inline-block;
}

.conRight-head .item a .open {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.conRight-head .item a img {
    vertical-align: top;
}

.conRight-head .item a .open > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.conRight-head .item a .video_name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 19px 0 15px 25px;
    background: rgba(56, 56, 56, 0.5);
    font-size: 16px;
    color: #ffffff;
}

.video-js{
    width: 100%;
}

.index7 .conRight .item:nth-child(2) {
    padding: 23px 0;
    border-top: 1px solid #EDEDED;
    border-bottom: 1px solid #EDEDED;
}

video {
    border: none !important;
}

@keyframes example {
    0% {
        -webkit-transform: scale(.5);
        -moz-transform: scale(.5);
        -ms-transform: scale(.5);
        -o-transform: scale(.5);
        transform: scale(.5)
    }

    50% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }

    100% {
        -webkit-transform: scale(.5);
        -moz-transform: scale(.5);
        -ms-transform: scale(.5);
        -o-transform: scale(.5);
        transform: scale(.5)
    }
}

@media (max-width: 1620px) {
}

@media (max-width: 1450px) {
    .caseDel1 .conRight p {
        margin: 47px 0 40px;
        font-size: 16px;
        line-height: 30px;
    }

    .caseDel2 .conBox {
        display: grid;
        grid-template-columns: 40% 58%;
    }

}

@media (max-width: 1220px) {
    .caseDel1 .conRight p {
        line-height: 26px;
        margin: 18px 0;
    }
    .header .nav_list > li {
        margin-left: 28px;
    }

    .header .nav_list > li > a > span {
        font-size: 15px;
    }

    .index3 .conBox .conLeft .item:nth-child(2n) {
        padding-left: 32px;
    }

    .index3 .conBox .conLeft .item:nth-child(2n-1) {
        padding-right: 28px;
    }

    .index3 .conBox .conRight {
        width: 30%;
    }

    .index3 {
        /*background-position: left;*/
        background-size: cover;
    }

    .index7 .conRight .item .text span {
        margin: 15px 0 13px;
    }

    .index7 .content {
        flex-direction: column;
    }

    .index7 .content .conLeft,
    .index7 .content .conRight {
        width: 100%;
    }

    .index7 .content .conRight {
        margin-top: 20px;
    }

    .index7 .content .conLeft .img {
        text-align: center;
    }

    .about2 .content {
        flex-direction: column-reverse;
    }

    .about2 .content .conRight {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about2 .content .conLeft {
        width: 100%;
    }

    .about6 {
        height: auto;
        padding: 20px 0;
    }

    .about6 .content {
        grid-template-columns: repeat(2, 48%);
    }

    .about6 .content .item {
        padding: 85px 14px 37px;
    }

    .ability3Slick .item {
        padding: 0 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ability4 .ability4Tab .item {
        font-size: 14px;
        width: 140px;
    }

    .ability4 .ability4Tab {
        padding: 0;
        padding-bottom: 18px;
    }

    .serverDel3 .conBox {
        grid-template-columns: 100%;
    }

    .serverDel3 .conRight {
        align-items: center;
        justify-content: center;
    }
    .serverDel4 .content .item {
        grid-template-columns: 12% 83%;
    }
    .serverDel4 .content {
        margin-top: 38px;
        display: grid;
        grid-template-columns: 100%;
        justify-content: space-between;
        grid-row-gap: 30px;
    }

    .caseDel3 .content {
        grid-template-columns: 100%;
    }

    .caseDel3 .conTab {
        height: 86vw;
    }

    .caseDel3 .caseTab .img {
        overflow: hidden;
        height: 23.5vw;
    }

}

@media (max-width: 992px) {

    .Crumbs ul li a,
    .Crumbs ul li,
    .Crumbs ul li a span,
    .Crumbs ul i {
        font-size: 14px;
        line-height: 1.2;
    }

    .Crumbs span.youAreHere {
        display: none;
    }

    body {
        padding-top: 60px;
		min-height: 100vh
    }

    /*移动端隐藏模块*/
    .header {
        display: none;
    }

    /*移动端头部*/
    .m_header {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        z-index: 100002;
        -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    }

    .m_header {
        height: 60px;
    }

    .logo_box {
        width: 100%;
        height: 60px;
        text-align: center;
        padding: 5px 0;
        line-height: 0;
        font-size: 0;
        zoom: 1;
    }

    .logo_box img {
        height: 100%;
    }

    .nav_toggle {
        color: #fff;
        -webkit-transform: scale(0.7);
        -moz-transform: scale(0.7);
        -ms-transform: scale(0.7);
        -o-transform: scale(0.7);
        transform: scale(0.7);
        transform-origin: 50% 50%;
        position: absolute;
        top: 50%;
        left: 10px;
        margin-top: -13px;
        z-index: 999;
    }

    .nav_toggle {
        cursor: pointer;
        padding: 10px 35px 16px 0;
    }

    .nav_toggle span,
    .nav_toggle span:before,
    .nav_toggle span:after {
        cursor: pointer;
        height: 3px;
        width: 40px;
        background: #000000;
        position: absolute;
        display: block;
        content: '';
    }

    .nav_toggle span:before {
        top: -10px;
    }

    .nav_toggle span:after {
        bottom: -10px;
    }

    .nav_toggle span,
    .nav_toggle span:before,
    .nav_toggle span:after {
        transition: all 500ms ease-in-out;
        -webkit-transition: all 500ms ease-in-out;
        -moz-transition: all 500ms ease-in-out;
        -o-transition: all 500ms ease-in-out;
    }

    .nav_toggle.active span {
        background-color: transparent;
    }

    .nav_toggle.active span:before,
    .nav_toggle.active span:after {
        top: 0;
    }

    .nav_toggle.active span:before {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
    }

    .nav_toggle.active span:after {
        transform: translateY(-10px) rotate(-45deg);
        -webkit-transform: translateY(-10px) rotate(-45deg);
        -ms-transform: translateY(-10px) rotate(-45deg);
        top: 10px;
    }

    /*移动端导航*/
    .m_header .m_nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        bottom: 0;
        width: 100%;
        background: #ffffff;
        z-index: 2;
        overflow: auto;
        border-top: 1px solid #f0f0f0;
        margin-top: -1px;
    }

    .m_header .m_nav_list a {
        display: block;
        width: 100%;
        padding: 0 15px;
        line-height: 35px;
        text-align: left;
        font-size: 14px;
        color: #000000;
    }

    .m_header .m_nav_list > li {
        position: relative;
        border-bottom: 1px solid #f0f0f0;
        transition: transform .5s ease;
        transform: matrix(1, -1, 0, 1, 200, 100);
    }

    .m_header .m_nav_list > li > i {
        position: absolute;
        width: 20px;
        height: 20px;
        background: #000;
        top: 8px;
        right: 10px;
        cursor: pointer;
        z-index: 2;
        background: url("../image/li_click.png") no-repeat top center;
    }

    .m_header .m_nav_list > li > a {
        opacity: 0;
    }

    .m_header .m_nav_list .dropdown .dropdown_menu {
        height: 0;
        overflow: hidden;
    }

    .m_header .m_nav_list .dropdown .dropdown_menu.on {
        height: auto;
    }

    .m_header .m_nav_list .dropdown_menu > li {
        border-top: 1px solid #f0f0f0;
        background: #f5f5f5;
    }

    .footer_box .fast_navigation .item {
        display: none;
    }

    .footer_box .fast_navigation .item:nth-of-type(2) {
        display: block;
    }

    .index3 .conBox {
        flex-wrap: wrap;
    }

    .index3 .conBox .conLeft,
    .index3 .conBox .conRight {
        width: 100%;
    }

    .index3 .conBox .conRight {
        width: 100%;
        margin-top: 20px;
        padding: 18px 16px;
        background: rgba(255, 255, 255, 0.9);
    }

    .index3 {
        background-position: left;
    }

    .index3 .conRight .content .item {
        margin-top: 20px;
    }

    .index4 .context .item p {
        font-size: 15px;
    }

    .index5 .conBox {
        flex-direction: column;
    }

    .index5 .conBox .conLeft, .index5 .conBox .conRight {
        width: 100%;
        text-align: center;
    }

    .index5 .learn {
        margin: auto;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .index5 .conLeft .content {
        position: relative;
        left: auto;
        bottom: auto;
        width: auto;
        padding: 20px 0;
        grid-template-columns: 48% 48%;
    }

    .index5 .conLeft .content .item p {
        margin-top: 6px;
    }

    .index5 .conLeft .content .item {
        margin-top: 20px;
    }

    .about5 .item {
        padding: 0 10px;
    }

    .ability2 .content {
        flex-direction: column;
    }

    .ability2 .content .conLeft .item .dian span {
        height: 14px;
    }

    .ability2 .content .conLeft .item .text p {
        font-size: 15px;
    }

    .ability2 .content .conLeft .item.on .text p {
        font-size: 18px;
    }
    .ability2 .content .conLeft {
        padding-top: 15px;
        width: 100%;
    }

    .ability2 .content .conRight {
        width: 100%;
    }
    .ability2 .content .conRight .text p  {
        font-size: 16px;
        margin-top: 8px;
        line-height: 26px;
    }
    .ability2 .content .conRight .img {
        margin-top: 7px;
    }

    .serverDel5 .content .slickItem .text p {
        overflow: hidden;
        display: -webkit-box;
        text-overflow: ellipsis;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
    }

    .serverDel5 {
        height: auto;
        padding: 20px 0;
    }
    .serverDel5 .content .slickItem .text {
        /*min-height: auto;*/
    }

    .server3 .item {
        flex-direction: column-reverse;
    }
    .server3 .item .text,
    .server3 .item .img{
        width: 100%;
    }

    .server3 .item .text {
        margin-top: 20px;
    }
    .server3 .item .text p {
        font-size: 16px;
        font-weight: 400;
        color: #3C3C3C;
        margin: 23px 0 18px;
        line-height: 1.8;
    }

    .server3 .item:nth-child(2n) {
        flex-direction: column-reverse;
    }

    .contact2 .content {

        grid-template-columns: 100%;
    }

    .caseDel2 .conBox {
        display: grid;
        grid-template-columns: 100%;
    }

    .caseDel1 .conBox {
        flex-direction: column;
    }

    .caseDel1 .conRight {
        width: 100%;
        padding: 10px 10px;
         margin-left: 0px;
    }

    .caseDel4 .content .item {
        flex-direction: column-reverse;
    }

    .caseDel4 .content .item .text,
    .caseDel4 .content .item .img{
        width: 100%;
    }

    .caseDel4 .content .item:nth-child(2) {
        flex-direction: column-reverse;
    }

    .caseDel4 .content .item .text p {
        margin-top: 16px;
    }
    .caseDel4 .content .item .text  {
        margin-top: 20px;
    }

    .applicationDel2 .context {
        grid-template-columns: repeat(2, 45%);
    }
    .applicationDel2 .context .item {
        margin-top: 18px;
    }

    .application3 .content {
        display: grid;
        grid-template-columns: repeat(2, 45%);
    }
}

@media (max-width: 767px) {
    .serverDel5 {
        display: none;
    }
    #back_top {
        width: 0;
        height: 0;
        overflow: hidden;
    }

    .about3 .content {
        height: 100%;
        width: 100%;
        display: block;
    }

    .about3 {
        padding: 40px 0;
        height: auto;
    }

    .about3 .content .item:nth-child(1) {
        text-align: left;
    }

    .about3 .content .item .itemText:nth-child(2) {
        margin-top: 40px;
    }

    .serverDel4 .content .item {
        grid-template-columns: 100%;
    }

    .serverDel6 .content {
        grid-template-columns: repeat(2, 48%);
        grid-row-gap: 18px;
    }

    .serverDel2 .context .item {
        flex-direction: column-reverse;
    }
    .serverDel2 .context .item:nth-child(2) {
        flex-direction: column-reverse;
    }

    .serverDel2 .context .item .text {
        width: 100%;
        margin-top: 26px;
    }

    .serverDel2 .context .item .text p {
        margin-top: 20px;
    }

    .serverDel2 .context .item .img {
        width: 100%;
    }



    .serverDel2 .context .item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 33px;
    }

}

@media (max-width: 640px) {
    .application2 {
        margin-top: 35px;
    }
    .serverDel3 {
        padding-top: 30px;
    }

    .serverDel3 .conBox {
        padding: 34px 0;
    }

    .index2 .content .context {
        grid-template-columns: 100%;
    }

    .index2, .index4, .index7, .about2,.about4,.ability2,.ability5,.ability6,.serverDel4,.serverDel6,.server2,.server3,.contact2,.applicationDel2,.ability2{
        padding: 35px 0;
    }

    .application3 {
        margin: 35px 0;
    }

    .applicationDel2 .content {
        margin-top: 12px;
    }

    .applicationDel2 .context {
        margin-top: 17px;
    }

    .serverDel3 .conLeft p {
        font-size: 16px;
        margin-top: 20px;
    }

    .ability6 .content {
        margin-top: 35px;
    }

    .about4 .content {
        margin-top: 30px;
    }

    .ability5Slick .slick-dots {
        bottom: -26px;
    }

    .ability4 {
        margin-top: 0px;
    }

    .ability5 .content {
        padding-top: 34px;
    }

    .ability3 .slick-dots {
        bottom: -40px;
    }

    .about4 .content .about4Slick .item p {
        font-size: 16px;
        margin-top: 13px;
    }

    .pagingInfo {
        margin-top: 33px;
    }

    .about4 .slick-prev, .about4 .slick-next {
        bottom: -76px;
    }

    .index2 .title h2, .index3 .title h2, .index4 .title h2, .index5 .title h2, .index6 .title h2, .index7 .title h2 {
        font-size: 28px;
    }

    .index6 {
        margin-top: 46px;
    }

    .index7 .content {
        margin-top: 30px;
    }

    .ability2 .title h2, .ability3 .title h2, .ability4 .title h2, .ability5 .title h2, .about2 .title h2, .about3 .title h2, .about4 .title h2, .about5 .title h2, .about6 .title h2, .serverDel2 .title h2, .serverDel3 .title h2, .serverDel4 .title h2, .serverDel5 .title h2, .serverDel6 .title h2, .caseDel1 .title h2, .caseDel2 .title h2, .caseDel3 .title h2, .caseDel4 .title h2, .application2 .title h2, .application3 .title h2, .server2 .title h2, .server3 .title h2, .contact2 .title h2, .applicationDel2 .title h2, .ability6 .title h2 {
        font-size: 28px;
    }
    .ability5 .content .ability5Slick {
        padding: 0 18px;
    }


}

@media (max-width: 540px) {
    .about6 .content {
        grid-template-columns: 100%;
    }
    .ability4 .ability4Tab {
        flex-direction: column;
    }

    .ability4 .ability4Tab .item {
        width: 100%;
        margin: 5px 0;
    }

    .ability6 .content {
        grid-template-columns: repeat(3,30%);
    }

}

@media (max-width: 480px) {
    .ability6 .content {
        grid-template-columns: repeat(2,48%);
    }
    .index3 .conBox .conLeft .item {
        /*padding: 10px 8px;*/
    }

    .index3 .conBox .conLeft .item:nth-child(1) {
        border: none;
    }

    .index3 .conBox .conLeft .item:nth-child(2n-1) {
        border: none;
    }

    .index3 .conBox .conLeft .item:nth-child(2) {
        border: none;
    }

    .index3 .conBox .conLeft {
        grid-template-columns: 100%;
    }

    .index7 .conRight .item {
        flex-direction: column;
    }

    .index7 .conRight .item .img {
        text-align: center;
    }

    .index7 .conRight .item .img,
    .index7 .conRight .item .text {
        width: 100%;
    }

    .index7 .conRight .item .text {
        padding: 19px 40px 7px 0px;
    }

    .index6 p {
        font-size: 24px;
        font-weight: 500;
        color: #FFFFFF;
        line-height: 24px;
        margin-right: 0px;
        margin-top: 50px;
        text-align: center;
    }

    .index6 .conBox {
        overflow: hidden;
        display: block;
    }

    .index6 .learn {
        margin: auto;
        margin-top: 30px;
    }

}

@media (max-width: 1742px) {

}



/* ---------------------------------------------
　layout modules
------------------------------------------------ */

/* base modules
------------------------------------------------ */
.content p,
.content ul,
.content dl,
.content ol,
.content table,
.content blockquote{
	margin: 20px 0 0;
	line-height:1.8em;
}

.content ul p, .content ul dl, .content ul ol, 
.content dl p, .content dl ul, .content dl ol, 
.content ol p, .content ol ul, .content ol dl, 
.content table p, .content table ul, .content table dl, .content table ol{
	margin: 0;
}

.content p img, .content dl img, .content ul img {
	vertical-align: middle;
}

.column-image-left,.column-image-center,.column-image-right { margin-top:20px !important; }

/* common modules
------------------------------------------------ */

sup{ font-size:10px; line-height:100%; vertical-align:top; }

em        { color:#FD6408;  }

.small    { font-size:87%;  }
.x-small  { font-size:78%;  }

.large    { font-size:107%; }
.x-large  { font-size:120%; }
.xx-large { font-size:140%; }

.attention{ color: #FF3366;   }
.attention2{ color: #00a0e9;  }
.attention3{ color: #f90;  }
.attention4{ color: #090;  }
.bold     { font-weight:bold; }
.normal { font-weight:normal !important; }

.center{ text-align: center; }
.right { text-align:right;   }
.left  { text-align:left;    }

.middle{ vertical-align:middle; }

.block{ display:block; }

.float-l{ float: left;  }
.float-r{ float: right; }
.clear  { clear: both;  }

.img-l{ float:left;  margin:0 25px 10px 0; }
.img-r{ float:right; margin:0 0 10px 25px; }

.nowrap         { white-space:nowrap; }
.nomargintop    { margin-top: 0 !important; }
.content .nocss { maring:0; padding:0; border:none; background:none; }

.mt05{ margin-top:5px !important; }
.mt10{ margin-top:10px !important; }
.mt20{ margin-top:20px !important; }
.mt30{ margin-top:30px !important; }
.mt40{ margin-top:40px !important; }
.mt50{ margin-top:50px !important; }
.mt60{ margin-top:60px !important; }/* PCのみ */
.mt70{ margin-top:70px !important; }/* PCのみ */
.mt80{ margin-top:80px !important; }/* PCのみ */



.ml1em{ margin-left:1em !important; }
.ml2em{ margin-left:2em !important; }
.ml3em{ margin-left:3em !important; }
.ml4em{ margin-left:4em !important; }
.ml5em{ margin-left:5em !important; }

.f14{ font-size:14px !important; }

.fmsp{ font-family: "ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック", Osaka !important; }

.tategaki{
	writing-mode:vertical-rl;
	-ms-writing-mode:tb-rl;
	-webkit-writing-mode:vertical-rl;
}

a.telephone,
a.telephone:active{
	color:#333;
	text-decoration:none;
	cursor:default;
}

.frame01{
	background:#fff;
	border:1px solid #000;
	padding:5px 10px;
}

.frame02{
	background:#FF3366;
	color:#fff;
	padding:5px 10px;
}

.frame03{
	background:#fff;
	border:1px solid #FF3366;
	padding:4px 10px;
}

.frame04{
	background:#00a0e9;
	color:#fff;
	padding:5px 10px;
}

.spview{ display:none; }


a #img_wrap {
	display: inline-block;
	max-width: 100%;
}
a #img_wrap:not(.global-navigation li a #img_wrap) {
	transition: 0.3s;
}
a #img_wrap:hover:not(.global-navigation li a #img_wrap) {
	opacity: 0.5;
	transition: 0.3s;
}

/* --- anchor --- */

.anchor{
	background:url(../images/icon_arrow01.png) no-repeat 0 0.45em;
	padding-left:10px;
}

.anchor-ex{
	background:url(../images/icon_window01.png) no-repeat right top 0.2em;
	padding-right:17px;
}


/* --- btn --- */
a.btn-detail, .btn-detail a{
	background:url(../images/icon_arrow01.png) no-repeat right 20px center #FFF600 !important;
	padding:15px 40px;
	color:#333;
	text-decoration:none;
	text-align:center;
	display:block;
}

a.btn-detail:hover, .btn-detail a:hover, .btn-detail.stay a{ background-color:#F7A800 !important; }

a.btn-detail.gray, .btn-detail.gray a{
	background:url(../images/icon_arrow03.png) no-repeat right 10px center #888 !important;
	padding:15px 20px;
	color:#fff;
}

a.btn-detail.gray:hover, .btn-detail.gray a:hover, .btn-detail.gray.stay a{
	background:url(../images/icon_arrow01.png) no-repeat right 10px center #FFF600 !important;
	padding:15px 20px;
	color:#333;
}
.btn-detail.gray.stay a{ background-color:#F7A800 !important; }

.w300{
	width:300px;
	margin-right:auto !important;
	margin-left:auto !important;
}

.w410{
	width:410px;
	margin-right:auto !important;
	margin-left:auto !important;
}


/* --- ext icon --- */

a[href$='.xls'], a[href$='.xlsx']{
	background: url(../images/fileicon/xls.png) no-repeat 100% 50%;
	padding-right: 25px;
}

a[href$='.doc'], a[href$='.docx']{
	background: url(../images/fileicon/doc.png) no-repeat 100% 50%;
	padding-right: 25px;
}

a[href$='pdf']{
	background: url(../images/fileicon/pdf.png) no-repeat 100% 50%;
	padding-right: 25px;
}

a[href$='ppt']{
	background: url(../images/fileicon/ppt.png) no-repeat 100% 50%;
	padding-right: 25px;
}


/* --- openwin --- */

.openwin{ 
	padding-right: 15px;
}

/* ---　pagetop-in　 --- */

.pagetop-in {
	text-align:right;
}

.pagetop-in a {	
	background:url(../images/icon_arrow_pagetop.png) no-repeat 0 0.4em;
	padding-left: 15px;
	font-size: 92%;
}

/* --- blockquote --- */

blockquote, 
.acms-entry blockquote{
	background:url(../images/bg_blockquote.png) left top no-repeat #f9f9f9;
	color:#666;
	font-size:13px;
	font-style:italic !important;
	line-height:2.3 !important;
	border:0;
	margin:40px 0 0 !important;
	padding:35px 30px 30px 105px;
}

blockquote p, 
.acms-entry blockquote p{
	font-size:13px;
	font-style:italic !important;
	line-height:2.3 !important;
}

blockquote p:first-child, 
.acms-entry blockquote p:first-child{
	margin-top:0;
}


/* --- video --- */

video.video-unit{
	width: 100%;
	height: auto;
	margin: 20px 0 0;
}

/* ------ title -------------------------------- */

.content h2,
.content h3, 
.content .wysiwyg h1,
.content h4, 
.content .wysiwyg h2,
.content h5, 
.content .wysiwyg h3{
	font-family:"游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}

.content h2{
	clear:both;
	margin:50px 0 0;
	color:#fff;
	font-size:20px;
	font-weight:bold;

	padding:10px 15px;
	position:relative;
}
.content h2:first-child{ margin-top:0; }

.content h2 a:link          { color:#fff; text-decoration:underline; }
.content h2 a:visited       { color:#fff; text-decoration:underline; }
.content h2 a:hover,a:active{ color:#fff; text-decoration:none; }

.content.one-col h2{

}

.content h2 span{
	font-size:14px;
	font-weight:normal;
	margin:0 10px;
}

.content h3, 
.content .wysiwyg h1{
	clear:both;
	margin:40px 0 0;
	color:#333;
	font-size:18px;
	font-weight:bold;
	background:url(../images/bg_title_h3.png) left top no-repeat;
	padding:10px 15px 8px;
	border-bottom:1px solid #ddd;
}
.content h3 span{ font-size:12px; }
.content h3.noborder{
	border-bottom:none;
	padding-bottom:0;
}

.content h3.lineheight span{
	line-height: 1.2em;
	display: block;
}

.content h4{
	clear:both;
	color:#333;
	font-size:18px;
	font-weight:bold;
	margin:40px 0 0;
	background:url(../images/bg_title_h4.png) center right no-repeat;
	border:none;
	padding:0;
}
.content h4 span{
	background:#fff;
	padding-right:15px;
	font-size:18px;
	font-weight:bold;
	margin:0;
}

.content .wysiwyg h2{
	border-bottom:1px solid #ccc;
	padding:10px;
	background:none;
	color:#333;
	font-size:18px;
}


.content h5, 
.content .wysiwyg h3{
	clear:both;
	font-size:18px;
	font-weight:bold;
	margin:40px 0 0;
	padding:0;
	background:none;
	border:none;
}

.content h4 .iso{
	background:#fff;
	border:1px solid #000;
	padding:7px 10px;
	margin-left:10px;
}

h2 .frame-title{
	position:absolute;
	top:7px;
	right:10px;
	background:#fff;
	font-size:18px !important;
	font-weight:bold !important;
	color:#f00;
	border:1px solid #f00;
	padding:2px 10px;
}


/* ------ ul ----------------------------------- */


/* --- normal list --- */

.list li,
.wysiwyg li{
	background:url(../images/icon_list01.png) no-repeat 0 0.6em;
	padding-left:13px;
	margin-bottom:5px;
}

.list li li,
.wysiwyg li li {
	background:url(../images/icon_list02.png) no-repeat 0 0.6em;
}

.wysiwyg li,
.wysiwyg li li{ background-position: 0 0.45em; }

.wysiwyg ol li{
	background:none;
	padding:0;
}


/* --- link list --- */

.link li{
	background:url(../images/icon_arrow01.png) no-repeat 0 0.5em;
	padding-left:13px;
	margin-bottom:5px;
}

.link li li{
	background:url(../images/icon_arrow02.png) no-repeat 0 0.5em;
	padding-left: 10px;
}

/* --- number list --- */

ol li {
	list-style-type:decimal;
	margin-left:25px;
	margin-bottom:5px;
}

ol ul li{
	list-style-type:none;
	margin-left:10px;
}

/* --- attention list --- */

.rice li{
	margin:0 0 5px 1em;
	text-indent:-1em;
}

/* --- compact list --- */

.compact li{
	display:inline;
	margin-right:10px;
}

/* --- within compact list --- */

.within {
	padding: 8px;
	border: 1px solid #ddd;
}

.within li{
	background:url(../images/icon_arrow_within.png) no-repeat 0 0.4em;
	padding-left:15px;
}


.content ul ul, .content dl dl, .content ol ol {
	margin-top: 5px;
}

/* ------ dl ----------------------------------- */

/* --- normal list --- */

.list dt{
	background:url(../images/icon_list01.png) no-repeat 0 0.5em;
	padding-left:13px;
	font-weight:bold;
}

.list dd{
	padding-left:13px;
}

/* --- link list --- */

.link dt{
	background:url(../images/icon_arrow01.png) no-repeat 0 0.4em;
	padding-left:15px;
	font-weight:bold;
}

.link dd{
	padding-left:15px;
}

/* --- horizonal --- */

.horizonal dt {
  clear: left;
  float: left;
  width: 10em;
  padding:8px 8px 8px 0;
}

.horizonal dd {
  padding:8px 15px 8px 11em;
  border-bottom:1px solid #ddd;
}



/* ------ layout frame ------------------------- */

.content .layout-frame {
	clear: both;
	margin-left: -20px;
}

.content .layout-3col {
	margin-left: -15px;
}

.content .layout-unit {
	float: left;
	display: inline;
	margin-left: 20px;
}

.content .layout-3col .layout-unit {
	margin-left: 15px;
}

/* 720px */
.grid-1 { width: 60px; }
.grid-2 { width:110px; }
.grid-3 { width:165px; }
.grid-4 { width:230px; }
.grid-5 { width:290px; }
.grid-6 { width:350px; }
.grid-7 { width:410px; }
.grid-8 { width:470px; }
.grid-9 { width:530px; }
.grid-10{ width:590px; }
.grid-11{ width:650px; }
.grid-12{ width:720px; }

.grid-35 { width:225px; }

.one-col .grid-6 { width:480px; }

.content .layout-unit img{
	max-width:100%;
	height:auto;
}



/* ------ social media ------------------------- */

.social{
	margin-top:20px;
}

.social ul li{
	float:left;
	margin-right:10px;
	vertical-align:top;
	width:80px;
	display:inline-table;
}

.social ul li.twitter, 
.social ul li.google{
	padding-top:5px;
}

.social ul li *{
	margin:0;
	padding:0;
}

.social ul:after {
	visibility:hidden;
	display:block;
	font-size:0;
	content:" ";
	clear:both;
	height:0;
}
* html .social ul             { zoom:1; } /* IE6 */
*:first-child+html .social ul { zoom:1; } /* IE7 */



/* ------ table -------------------------------- */

table{
	border-collapse:collapse;
	/*border:1px solid #cecece;*/
	width:100%;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

table th,
table td{
	padding:15px 20px;
	vertical-align:top;
	border:2px solid #fff;
	background:#f9f9f9;
	color:#4e483b;
}

table th{
	background:#f4f4f4;
	font-weight:normal;
}

table thead th,
th.head {
	background:#ececec;
	text-align:center;
}

/* --- spec-table --- */
.spec-table table th,
.spec-table table td{
	padding:8px 20px 7px;
	font-size:13px;
	line-height:1.6;
}

.spec-table.option  table th,
.spec-table.option table td {
	padding:8px 15px 7px;
}

.spec-table table th.tate p {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
	height: 120px;
}

/* --- yeast-table --- */
.spec-table table.yeast-table th,
.spec-table table.yeast-table td{
	padding:15px 20px;
	font-size:100%;
}


/* --- noborder --- */

table.noborder,
table.noborder td,
table.noborder th{
	border:0;
	background: none;
}

/* index
------------------------------------------------ */

.index {
	clear: both;
	margin: 0 0 0 -20px;
}

.index dl {
	position: relative;
	float: left;
	display: inline;
	margin-left: 20px;
	width: 350px;
	background: #eee;
}

.index dt {
	padding: 7px;
	background:#ddd;
}

.index dt a {
	text-decoration:none;
}

.index dd {
	padding: 7px;
}


/* cms
------------------------------------------------ */

.acms-form-group{ margin:0;}

.acms-entry{
	margin:0 0 50px;
}

.acms-entry p{
	margin-left:10px;
	margin-right:10px;
}

#fullResImage {
    pointer-events: none;
  }
/* --- entry-date --- */

.entry-date {
	text-align: right;
	font-size: 87%;
}

/* --- entry-navigation / pager-navigation --- */

.entry-navigation, 
.pager-navigation{
	font-size:87%;
	margin:50px 0 0;
}

.entry-navigation a:link, .entry-navigation a:visited, .entry-navigation a:hover, .entry-navigation a:active, 
.pager-navigation a:link, .pager-navigation a:visited, .pager-navigation a:hover, .pager-navigation a:active{
	text-decoration:none;
}

.entry-navigation ul, 
.pager-navigation ul{
	margin:0;
}

/* entry-navigation */

.entry-navigation{
	background:#eee;
	padding:10px;
}

.entry-navigation li{
	width:300px;
}

.entry-navigation .entry-old{
	float:left;
}

.entry-navigation .entry-new{
	float:right;
	text-align:right;
}

.entry-navigation .home{
	text-align:center;
	margin-top:-20px;
}

.entry-navigation ul:after {
	visibility:hidden;
	display:block;
	font-size:0;
	content:" ";
	clear:both;
	height:0;
}
* html .entry-navigation ul             { zoom:1; } /* IE6 */
*:first-child+html .entry-navigation ul { zoom:1; } /* IE7 */

/* pager-navigation */

.pager-navigation ul li{
	float:left;
	text-align:center;
	margin-right:10px;
	line-height:1;
}

.pager-navigation ul li span.cur{
	background:#f6f6f6;
	border:1px solid #CECECE;
	color:#666;
	display:block;
	line-height:1;
	padding:0.5em 0.7em;
	position:relative;
}

.pager-navigation ul li a:link, 
.pager-navigation ul li a:visited{
	background:#fff;
	border:1px solid #CECECE;
	color:#666;
	display:block;
	line-height:1;
	padding:0.5em 0.7em;
	position:relative;
}

.pager-navigation ul li a:hover, 
.pager-navigation ul li a:active{
	background:#CECECE;
}

/* 続きを読むリンク */
.search.entry p.continue {
	margin: 0;
	padding: 0;
}

.search.entry p.continue a {
	display: block;
	margin: 0;
	padding: 10px 0 10px 40px;
	border-top: 1px solid #E8E8E8;
	background: url(../images/icn_arrow01.png) no-repeat 20px 15px;
}

.search.entry p.continue a:hover {
	background-color: #F0F0F0;
}

/* taglist */
.taglist {
  margin: 0 auto 30px;
  text-align: center;
  padding: 5px 0;
  clear: both;
}
.taglist a {
  display: inline-block;
  border-radius: 20px;
  text-decoration: none;
  padding: 5px 15px;
  color: #666;
  background: #ddd;
}
.taglist a:hover {
  background: #000;
  color: #fff;
}