﻿@charset "UTF-8";
/*@import url("iconfont/iconfont.css");*/
/*@import url("font-awesome/css/font-awesome.min.css");*/
@import url("base/grid.css");
@import url("base/text.css");
@import url("base/button.css");

#headerTop {
    font-size: 16px;
    line-height: 48px;
    height: 48px;

    color: #d1d4d5;
    background-color: #3a4852;
    text-align: center;
    overflow: hidden;
}

#headerTop > div.container {
    display: flex;
    justify-content: space-between;
}

#headerTop dl {
    margin-top: 0;
    margin-bottom: 0;
}

#headerTop dl dt {
    display: inline-block;
    background-image: url(/assets/img/common/topHeader.png);
    background-repeat: no-repeat;
    background-position: 0 center;
    padding-left: 20px;
}

#headerTop dl dd {
    display: inline-block;
    margin: 0;
    padding-left: 5px;
}

#headerTop ul {
    display: flex;
    list-style: none;
    gap: 15px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}

#headerTop ul li {

}

#headerTop ul li a {
    display: block;
}

#headerTop ul li a img {
    display: block;
    max-width: 100%;
}

#overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
}

#overlay .body {
    position: fixed;
    z-index: 13;
    width: 260px;
    top: 45%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    background-color: #FAFAFC;
    text-align: center;
    border-radius: 3px;

    opacity: 0;
    transition: all 0.3s ease-out;
}

#overlay .body img {

}

#overlay .body .close {
    position: absolute;
    right: -13px;
    top: -13px;
    cursor: pointer;
}

#overlay .body .close:hover {
    opacity: 0.9;
}

#overlay .mask {
    position: fixed;
    z-index: 12;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.0);
    transition: all 0.3s ease-out;
}

#overlay.active {
    visibility: visible;
}

#overlay.active .mask {
    background-color: rgba(0, 0, 0, 0.6);
}

#overlay.active .body {
    opacity: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#header {
    height: 80px;
    position: relative;
    z-index: 100;
    background-color: #A6D4FE;
    /*background-color: #5E91B1;*/
}

#header:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #EC6B6D;
}

#header .logo {
    width: 204px;
    height: 198px;
    margin-left: -93px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 4px;
    z-index: 2;
}

#header .logo a {
    _background-image: url(/assets/img/logo.png);
    background-image: -webkit-image-set(
            url(/assets/img/logo.png) 1x,
            url(/assets/img/logo@2x.png) 2x,
            url(/assets/img/logo@3x.png) 3x
    );

    background-repeat: no-repeat;
    background-position: top center;
    padding-top: 198px;
    display: block;
}

#header #nav {
    height: 80px;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 1;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#header #nav ul {
    width: 1180px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

#header #nav li {
    float: left;
    position: relative;
}

#header #nav li.x {
    margin-left: 360px;
}

#header #nav ul li > a {
    display: block;
    float: left;
    height: 76px;
    color: #fff;
    width: 116px;
    position: relative;
    padding-top: 4px;

    transition: top 0.3s ease-out;
    box-sizing: content-box;
}

#header #nav ul li:hover > a,
#header #nav ul li.active a {
    padding-top: 0;
    text-decoration: none;
    color: #EC6B6D;
    border-top: 4px solid #FDD2C8;
    background: white;
}

#header #nav ul li > a b {
    display: block;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.25;
    margin: 21px 0 5px;
    transition: top 0.2s ease-out;

    position: relative;
    top: 0;
}

#header #nav ul li a span {
    display: block;
    font-size: 9px;
    line-height: 12px;
    font-weight: normal;
    cursor: pointer;
    transition: top 0.2s ease-out;

    position: relative;
    top: 0;
}

#header #nav ul li:hover > a b {
    top: 17px;
}

#header #nav ul li:hover > a span {
    top: -24px;
    color: #EC6B6D;
}


/*---当前分类---*/

#header .subnav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    padding: 0;
    z-index: 11;
    background-color: rgba(255, 255, 255, 0.8);
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;

    max-height: 0;
    transition: max-height 0.3s ease;
    overflow: hidden;
}

#header .subnav a:first-child {
    margin-top: 10px;
}

#header .subnav a:last-child {
    margin-bottom: 10px;
}

#header #nav ul li:hover .subnav {
    overflow: visible;
    max-height: 500px;
}

#header .subnav a {
    position: relative;
    display: block;
    font-size: 12px;
    line-height: 30px;
    z-index: 2;
    color: #000;

    margin: 3px;
}

#header .subnav a:hover {
    color: #fff;
    border-radius: 3px;
    background-color: #505d67;
    text-decoration: none;
}

/* 手机端导航 ↓↓↓ */

#sp_header {

}

#sp_header .logoArea {
    height: 125px;
    padding-top: 17px;

    background-color: #98cdfd;
    /*background-color: #77b5dc;*/
    background-image: url(/assets/img/common/cloud.png);
    background-repeat: repeat-x;
    background-size: 280px 51px;
    -webkit-animation: cloud 10s linear infinite;
    text-align: center;

    position: relative;

    animation-duration: 10s;
    animation-fill-mode: none;
    animation-iteration-count: infinite;
    animation-name: cloud;
    animation-play-state: running;
    animation-timing-function: linear;
    background-attachment: scroll;
}

#sp_header .logoArea:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 28px;
    width: 30px;
    height: 17px;
    margin-left: -15px;

    background: url(/assets/img/common/f.png) no-repeat;
    background-size: cover;
}

#sp_header .logoArea:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 41px;
    background-image: url(/assets/img/common/cloud2.png);
    background-size: 280px 41px;
    background-repeat: repeat-x;
    -webkit-animation: cloud 5s linear infinite
}

@-webkit-keyframes cloud {
    to {
        background-position: 0 bottom
    }

    from {
        background-position: 280px bottom
    }
}

#sp_header .logoArea a {
    display: inline-block;
}

#sp_header .logoArea a img {
    display: block;
    margin: 0 auto;
}

#sp_header .logoArea a.tel {
    position: absolute;
    right: 10px;
    bottom: 13px;
    z-index: 100;
}

#sp_header .naviList {
    text-align: center;
    box-shadow: 0 0.064rem 0.1066666667rem rgba(0, 0, 0, 0.1);
    background-color: #77b5dc;

    overflow: hidden;
}

#sp_header .naviList ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

#sp_header .naviList li {
    flex: 1;
    flex-basis: 25%;
    font-size: 14px;
    line-height: 10px;
    padding-top: 11px;
    padding-bottom: 8px;
}

#sp_header .naviList li a {
    color: #fff;
}

#sp_header .naviList li a span {
    font-size: 7px;
}

#sp_header .naviList li.active {
    background-color: #6CA3C7;
}

#sp_header .naviList li.active a {
    color: #FFFFAA;
}


#subnav {
    background-color: #F3F4FA;
    overflow: hidden;
}

#subnav .container ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}

#subnav .container ul li {
    flex-basis: 25%;
    text-align: center;
    line-height: 38px;
}

#subnav .container ul li a {
    color: #757575;
    font-size: 13px;
}

#subnav .container li.active {
    border-bottom: 3px solid #FF9902;
}

#subnav .container li.active a {
    color: #333333;
}

/* 手机端导航 ↑↑↑ */


#footer {

}

#footer .navigation {
    border-top: 1px solid #d9d9d9;
    background-color: #f3f3f3;
    overflow: hidden;
}

#footer .navigation .container {
    position: relative;
    margin-top: 76px;
    margin-bottom: 56px;
}

#footer .navigation .naviItems {
    border-top: 2px solid #BBBBBB;
    display: inline-block;
    margin-right: 30px;
    margin-bottom: 10px;
    padding-top: 10px;
}

#footer .navigation .naviItems dl {
    display: inline-block;
    margin: 0;
    vertical-align: top;
}

#footer .navigation .naviItems dl:not(:last-child) {
    margin-right: 24px;
}

#footer .navigation .naviItems dl dt {
    font-size: 14px;
    color: #000000;
}

#footer .navigation .naviItems dl dd {
    font-size: 12px;
    margin: 0;
    line-height: 2.15;
}

#footer .navigation .naviItems dl dd a {
    color: #333;
}

#footer .navigation .links {
    font-size: 12px;
    display: inline-block;
    float: left;
    margin-top: 50px;
    margin-right: 3px;
    padding-right: 4px;
}

#footer .navigation .links a {
    color: #333;
    margin: 0;
}

#footer .navigation .links ul li {
    display: inline-block;
    font-size: 13px;
    margin-right: 3px;
    padding-right: 7px;
    width: auto;
    line-height: 12px;
    border-right: 2px solid #a9a9a9;
}

#footer .navigation .links ul li:first-child {
    padding-right: 0;
    border-right: none;
}

#footer .navigation .links ul li:last-child {
    padding-right: 0;
    border-right: none;
}

#footer .navigation .contact {
    display: inline-block;
    float: right;
    max-width: 260px;
    width: 100%;
    height: 64px;
    background-color: #FFFFFF;
    border-radius: 2px;
    border: 2px solid #C2C2C2;
    text-align: center;
    margin-top: 45px;
    /*margin-right: -64px;*/
}

#footer .navigation .contact a {
    display: block;
    font-size: 13px;
    line-height: 64px;
    color: #000;
    text-decoration: none;
}

#footer .navigation .contact a:after {
    content: '';
    display: inline-block;
    width: 13px;
    height: 10px;
    margin-left: 6px;
    background-repeat: no-repeat;
    background-image: url(/assets/img/common/outLink.png);
    background-image: -webkit-image-set(
            url(/assets/img/common/outLink.png) 1x,
            url(/assets/img/common/outLink@2x.png) 2x,
            url(/assets/img/common/outLink@3x.png) 3x
    );
}

#footer .copyright {
    overflow: hidden;
}

#footer .copyright p {
    font-size: 15px;
    font-weight: 500;
}

#footer .copyright .del {
    font-size: 15px;
    color: #7D7D7D;
}


/* tabController */
.tabPanel .panel {
    display: none;
}

.tabPanel .panel[active] {
    display: block;
}

.container {
    max-width: 1200px;
    width: 1200px \9;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

small {
    font-size: 87.5%;
}

big {
    font-size: 125%;
}

h2 {
    margin: 0;
    font-size: 24px;
    font-weight: normal;
    line-height: 1.5;
}

.titleWithLine:before {
    width: 80%;
    width: calc(100% - 2.5em);
    height: 2px;
    background: #00CBE4;
    content: '';
    display: block;
    margin: 0 auto 5px;
}

.subtitle {
    color: #6E6E6E;
    font-size: 14px;
    margin: 0;
}

button.showDetail {

}

button.showDetail span {
    font-size: 36px;
    padding-top: 10px;
}

div.gallery {
    padding-top: 1em;
    padding-bottom: 1em;
    text-align: center;
    color: #fff;
    background-color: #374355;
}

div.gallery h3 {
    font-size: 24px;
    font-weight: normal;
    margin: 0;
}

div.gallery p.subtitle {
    color: #fff;
}

#submitMsg {
    text-align: center;
    padding-bottom: 4em;
}

#submitMsg h2 {
    margin-bottom: 1.5em;
}

#submitMsg form {
    background-color: #F5F5F5;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

#submitMsg form fieldset {
    border: none;
    margin: 0;
    padding: 24px;
}

#submitMsg form fieldset legend {
    margin: 0;
    padding-top: 1em;
    text-align: center;
    font-size: 20px;
    font-family: PingFangSC-Medium, serif;
}

#submitMsg form fieldset label.title {
    font-family: PingFangSC-Medium, serif;
    line-height: 2;
    display: block;
}

#submitMsg form fieldset label[required] {

}

#submitMsg form fieldset label[required]:after {
    content: " *";
    color: #FF0E00;
    font-family: arial, serif;
}

#submitMsg form fieldset div.requirementList {
    padding-left: 2em;
}

#submitMsg form fieldset div.requirementList > label {
    margin-left: -2em;
}

#submitMsg form fieldset div.requirementList dl {
    margin-top: 0;
}

#submitMsg form fieldset div.requirementList dl dt {

}

#submitMsg form fieldset div.requirementList dl dd {

}

#submitMsg form fieldset div.item {
    margin-bottom: 1.5em;
}

#submitMsg form fieldset div.item input {
    display: block;
    width: 100%;
    text-indent: 5px;
    line-height: 2;
    border-radius: 3px;
    border-width: 1px;
    border-style: solid;
    border-color: #CCCCCC;
    outline: none;
}

#submitMsg form fieldset button {
    margin: 0 auto;
    display: block;
    padding-left: 3em;
    padding-right: 3em;
}

.figure {

}

.figcaption {
    color: #6E6E6E;
    font-size: 12px;
    padding: 0;
    margin: 0;
}

.blueLine {
    position: relative;
    background-color: #CBE4F4;
    height: 25px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

img {
    width: auto;
    max-width: 100%;
}


@media (max-width: 950px) {

    #header #nav ul {

    }

    #header #nav ul li > a {
        width: 96px;
    }

}

@media (min-width: 951px)and( max-width:1200px) {

    #header #nav ul li > a {
        width: 96px;
    }

}