/** 
* Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/) 
* http://cssreset.com 
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

html {
    color: #676767;
    font-family: 'STXihei';
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul,
li {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    color: #fff;
}

input,
select {
    vertical-align: middle;
    color: #fff;
}

.font-weight {
    font-weight: bold;
}

.theme-color {
    color: #00bf86;
}

.main-btn {
    display: inline-block;
    position: relative;
    margin: 15px 0px;
    min-width: 115px;
    min-height: 45px;
    outline: none;
    border: 0;
    border-radius: 100px;
    background-color: #00F0FF;
    cursor: pointer;
    text-align: center;
    line-height: 45px;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.main-btn:focus {
    outline: none;
    border: 0;
}
.main-btn a {
    display: block;
    padding: 0px 25px;
    color: #fff;
}
.main-btn:hover {
    background-color: #00bf86;
}
label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold;
}
h1, h2, h3, h4, h5 {
    color: #333;
}
.show {
    display: block !important;
}
@media (min-width: 1200px) and (max-width: 1599px){
    h1 {
        font-size: 56px;
    }
    h2 {
        font-size: 36px;
    }
    h3 {
        font-size: 26px;
    }
    h4 {
        font-size: 18px;
    }
    html {
        font-size: 14px;
    }
}
@media (min-width: 1600px){
    h1 {
        font-size: 56px;
    }
    h2 {
        font-size: 46px;
    }
    h3 {
        font-size: 36px;
    }
    h4 {
        font-size: 20px;
    }
    html {
        font-size: 16px;
    }
}
.cursor {
    cursor: pointer;
}

body {
    background-color: #fff;
}

header {
    width: 90%;
    height: 100px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
    position: relative;
}

header nav {
    width: 60%;
    height: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

header nav>li>a {
    line-height: 100px;
    color: #676767;
    position: relative;
}
header nav>li>a .hotline {
    color: #004EFF;
    padding-left: 10px;
}
header nav>li>a .wechat {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    margin-left: 5px;
    top: 10px;
}
header .wechat p:first-child {
    width: 30px;
    height: 30px;
    overflow: hidden;
    position: relative;
}
header .wechat p:first-child img {
    position: absolute;
    top: 0;
    left: 0;
}
header .wechat p:last-child {
    display: none;
    width: 100px;
    height: 100px;
    padding: 10px;
    background-color: #fff;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #dadada;
}
header .wechat p:last-child img {
    width: 100%;
    height: 100%;
}

header nav > li:hover > a,
header nav .selected > a {
    color: #007aff;
    /*font-weight: bold;*/
}
header nav > .selected > a::after {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -15px;
    left: 0;
    background-color: #007aff;
}

header .menu-info {
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);

}

header .menu-info div {
    width: 500px;
    display: flex;
    justify-content: space-between;
    margin: 20px auto;
    /* font-size: 14px; */
}

header .menu-info li {
    line-height: 30px;
}

header .menu-info li:first-child {
    margin-bottom: 10px;
}

.banner {
    width: 100%;
    height: 52.63%;
    position: relative;
}

.banner img {
    width: 100%;
    height: 100%;
    /* background-color: aqua; */
}
.banner .banner-title {
    position: absolute;
    top: 46%;
    left: 10%;
    color: #fff;
    font-size: 18px;
    z-index: 100;
}
.banner .banner-title h2 {
    font-size: 60px;
    color: #fff;
    font-weight: bold;
}
.banner .banner-title p {
    line-height: 40px;
}
.banner .banner-title p:last-child {
    width: 50px;
    height: 10px;
    background-color: #FE025A;
    transition: 1s;
}

/* 当 banner 需要中间文字自定义的时候，class 名取 banners-title，可参照项目详情页面的使用 */
.banners-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.banners-title h2 {
    color: #fff;
    font-weight: bold;
}
.banners-title p {
    color: #fff;
    line-height: 40px;
    font-size: 18px;
}
/* end */

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    font-size: 0;
    overflow: hidden;
}

.slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    color: #fff;
}


.product {
    width: 80%;
    margin: 70px 10% 60px 10%;
}

.product .describe h2 {
    margin-top: 20px;
    /*font-weight: bold;*/
    color: #000;
    text-align: center;
    font-size: 33px;
}

.product .describe p {
    line-height: 20px;
    margin: 10px 0 20px 0;
    font-size: 16px;
    text-align: center;
    color: #c7c7c7;
}
@media (min-width: 1600px){
    .product .describe p {
        font-size: 18px;
    }
    
}

.product ul {
    display: flex;
    justify-content:space-between;
}



.product li h2 {
    /* font-size: 30px; */
    color: #000;
}



.product li div .merit {
    display: none;
    flex-wrap: wrap;
    position: relative;
}
.product li div .merit p {
    width: auto;
    line-height: 40px;
    font-size: 20px;
}
.product li div .merit .more {
    position: absolute;
    bottom: -40px;
    width: 115%;
}
.product li div .merit p:hover {
    border-bottom: 1px solid #fff;
}

.product li div .product-icon {
    width: 140px;
    height: 150px;
    overflow: hidden;
    position: relative;
}
.product li div .product-icon img {
    position: absolute;
    left: 0;
    top: 0;
}



.about {
    width: 100%;
    position: relative;
    /* background: url('__CDN__/assets/new/images/index_about_banner.jpg'); */
}
.about > img {
    width: 100%;
}
.about > div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
    background-color: rgba(0, 26, 96, 0.8);
}
.about ul {
    width: calc(80% - 50px);
    height: 480px;
    position: absolute;
    top: 50%;
    left: 10%;
    z-index: 9;
    transform: translateY(-50%);
    padding-left: 50px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    justify-content: space-between;
}

.about ul,
.about ul li:last-child {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about ul li:first-child,
.about ul li>div {
    width: calc(50% - 101px);
    color: #fff !important;
}

.about ul li:last-child {
    width: 50%;
    height: 100%;
}

.about ul li>div:nth-of-type(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.about ul li>div {
    height: calc(50% - 100px);
    padding: 50px;
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 18px;
}

.about ul li>div p:first-child {
    color: deepskyblue;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}

.about ul li h2 {
    /* font-size: 32px; */
    margin-bottom: 30px;
    color: #fff;
}

.about ul li>p {
    /* font-size: 14px; */
    line-height: 20px;
}

.about ul li>.about-more {
    margin-top: 50px;
}

.case {
    width: 80%;
    padding: 5% 10%;
    margin-top: 5%;
    background-color: #f5f5f5;
}

.case>div {
    text-align: center;
}

.case>div h2 {
    /* font-size: 26px; */
    margin-bottom: 10px;
    color: #000;
}

.case ul {
    display: flex;
    justify-content: space-around;
    padding: 5% 0;
}

.case ul li {
    /* width: 28%; */
    color: #fff;
    position: relative;
}

.case ul li>div {
    width: 80%;
    position: absolute;
    bottom: 10%;
    left: 10%;
}

.case ul li h4 {
    color: #fff;
}

.case ul li p {
    display: none;
    line-height: 20px;
}

.case .myProgress {
    width: 100%;
    height: 2px;
    margin: 10px 0 20px;
    background-color: #dadada;
}

.case .myBar {
    width: 20%;
    height: 2px;
    background-color: #4CAF50;
    text-align: center;
    line-height: 3px;
    color: white;
    transition: all .4s ease;
}
.case .myBar100 {
    width: 100%;
    transition: all .4s ease;
}

.cooperation {
    width: 80%;
    padding: 5% 10%;
}

.cooperation>div {
    text-align: center;
}

.cooperation>div h2 {
    /* font-size: 26px; */
    margin-bottom: 10px;
    color: #000;
}

.cooperation .service-type {
    display: flex;
    justify-content: center;
    margin: 40px 0 50px;
}

.cooperation .service-type p {
    display: flex;
    padding-bottom: 15px;
    border-bottom: 2px solid #676767;
    position: relative;
}

.cooperation .service-type p::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    bottom: -3px;
    left: 0;
    background-color: #00F0FF;
    transition: 1s;
}

.cooperation .service-type .move::after {
    left: 50%;
    transition: 1s;
}

.cooperation .service-type p span {
    padding: 0 10px;
}

.cooperation .service-type p span:hover {
    font-weight: bold;
}

.cooperation ul {
    display: flex;
    flex-wrap: wrap;
}

.cooperation ul li {
    width: calc(18.6% - 2px);
    margin: 0 1.75% 2% 0;
    border: 1px solid #f3f3f3;
    /* background-color: thistle; */
}

.cooperation ul li:nth-of-type(5n) {
    margin-right: 0;
}

.footer {
    width: 76%;
    padding: 3% 12% 1%;
    display: flex;
    justify-content: space-between;
    background-color: #8F9BAF;
    color: #fff;
    /* font-size: 14px; */
}

.footer .company-info {
    width: 50%;
    /* display: flex; */
}

.footer .company-info>p {
    line-height: 25px;
}

.footer .company-info>p:first-child {
    margin-bottom: 10px;
}

.footer .company-info div {
    display: flex;
    margin-top: 15px;
}

.footer .company-info div p {
    text-align: center;
    margin-right: 10px;
}

.footer .company-info div img {
    width: 100px;
    height: 100px;
}

.footer .company-info div span {
    font-size: 12px;
}

.footer .product-info {
    width: 500px;
    display: flex;
    justify-content: space-between;
}

.footer .product-info li {
    line-height: 26px;
}
.footer .product-info li > a:hover {
    color: #74e9fe;
}

.footer .product-info li:first-child {
    margin-bottom: 10px;
}
.page-footer {
    width: 76%;
    height: 40px;
    padding: 0 12%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    background-color: #000;
}
.page-footer ul {
    display: flex;
    justify-content: space-between;
}
.page-footer ul li {
    padding: 0 10px;
}
.page-footer .copy {
    font-size: 12px;
    color: #C5C5C5;
}
@media (min-width: 1600px){
    .page-footer .copy,.footer .company-info div span {
        font-size: 14px;
    }
}
.page-footer a {
    color: #fff;
}
.page-footer a:hover {
    color: #74e9fe;
}

.inquiry-box {
    width: 360px;
    height: 390px;
    font-size: 0px;
    position: absolute;
    bottom: 0;
    left: 65%;
    z-index: 100;
}

.inquiry-box label {
    margin-bottom: 0px;
    vertical-align: bottom;
}

@media (max-width: 1199px) {
    .inquiry-box label {
        vertical-align: top;
    }
}

.inquiry-price_content {
    display: block;
}

.track-num_content {
    display: none;
}

@media (max-width: 1199px) {
    .inquiry-price_content {
        display: none;
    }

    .track-num_content {
        display: none;
    }
}

#inquiry-price:checked~.inquiry-price_content {
    display: block;
}

#inquiry-price:checked~.track-num_content {
    display: none;
}

#track-num:checked~.inquiry-price_content {
    display: none;
}

#track-num:checked~.track-num_content {
    display: block;
}

.tab-btn-input {
    display: none;
}

.tab-btn {
    width: 120px;
    display: inline-block;
    padding: 15px 30px;
    color: white;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer;
    font-size: 18px;
    background-color: rgba(142, 153, 174, 0.96);
}

.tab-btn span {
    display: inline-block;
    line-height: 26px;
    padding-left: 30px;
    background: url(../images/small_ico.png) -70px -3px no-repeat;
}
.tab-btn img {
    width: auto;
    height: 22px;
    padding-right: 10px;
}

.tab-btn-price {
    background-color: rgba(23, 47, 90, 0.96);
}

.tab-btn-track {
    /* background-color: rgba(142, 153, 174, 0.96); */
}

@media (max-width: 1199px) {
    .inquiry-box {
        white-space: nowrap;
        bottom: 0;
        left: 0;
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }

    .tab-btn {
        width: 50vw;
        display: inline-block;
        border-radius: 0px 0px 0px 0px;
        text-align: center;
    }

    .tab-btn-price {
        background-color: rgba(23, 47, 90, 0.96);
    }

    .tab-btn-track {
        background-color: #051d49;
    }
}

.inquiry-box_content {
    white-space: normal;
    padding: 15px 30px;
    color: #fff;
    width: 300px;
    min-height: calc(100% - 86px);
    border-radius: 0px 0px 0px 0px;
}

.inquiry-box_content form,
.inquiry-box_content form span,
.inquiry-box_content form label {
    font-size: 0px;
    color: #fff;
    vertical-align: middle;
}

.inquiry-box_content form input,
.inquiry-box_content form select,
.inquiry-box_content form textarea,
.inquiry-box_content form span,
.inquiry-box_content form label,
.inquiry-box_content form span input,
.inquiry-box_content form span select,
.inquiry-box_content form span textarea,
.inquiry-box_content form span span,
.inquiry-box_content form span label,
.inquiry-box_content form label input,
.inquiry-box_content form label select,
.inquiry-box_content form label textarea,
.inquiry-box_content form label span,
.inquiry-box_content form label label {
    font-size: 16px;
}

.inquiry-box_content form input,
.inquiry-box_content form select,
.inquiry-box_content form textarea,
.inquiry-box_content form span input,
.inquiry-box_content form span select,
.inquiry-box_content form span textarea,
.inquiry-box_content form label input,
.inquiry-box_content form label select,
.inquiry-box_content form label textarea {
    overflow: hidden;
}

.inquiry-box_content form input:focus,
.inquiry-box_content form select:focus,
.inquiry-box_content form textarea:focus,
.inquiry-box_content form span input:focus,
.inquiry-box_content form span select:focus,
.inquiry-box_content form span textarea:focus,
.inquiry-box_content form label input:focus,
.inquiry-box_content form label select:focus,
.inquiry-box_content form label textarea:focus {
    outline: 0;
}

.inquiry-box_content form input::-webkit-input-placeholder,
.inquiry-box_content form select::-webkit-input-placeholder,
.inquiry-box_content form textarea::-webkit-input-placeholder,
.inquiry-box_content form span input::-webkit-input-placeholder,
.inquiry-box_content form span select::-webkit-input-placeholder,
.inquiry-box_content form span textarea::-webkit-input-placeholder,
.inquiry-box_content form label input::-webkit-input-placeholder,
.inquiry-box_content form label select::-webkit-input-placeholder,
.inquiry-box_content form label textarea::-webkit-input-placeholder {
    color: #fff !important;
}

.inquiry-box_content form input:-ms-input-placeholder,
.inquiry-box_content form select:-ms-input-placeholder,
.inquiry-box_content form textarea:-ms-input-placeholder,
.inquiry-box_content form span input:-ms-input-placeholder,
.inquiry-box_content form span select:-ms-input-placeholder,
.inquiry-box_content form span textarea:-ms-input-placeholder,
.inquiry-box_content form label input:-ms-input-placeholder,
.inquiry-box_content form label select:-ms-input-placeholder,
.inquiry-box_content form label textarea:-ms-input-placeholder {
    color: #fff !important;
}

.inquiry-box_content form input::-ms-input-placeholder,
.inquiry-box_content form select::-ms-input-placeholder,
.inquiry-box_content form textarea::-ms-input-placeholder,
.inquiry-box_content form span input::-ms-input-placeholder,
.inquiry-box_content form span select::-ms-input-placeholder,
.inquiry-box_content form span textarea::-ms-input-placeholder,
.inquiry-box_content form label input::-ms-input-placeholder,
.inquiry-box_content form label select::-ms-input-placeholder,
.inquiry-box_content form label textarea::-ms-input-placeholder {
    color: #fff !important;
}

.inquiry-box_content form input::placeholder,
.inquiry-box_content form select::placeholder,
.inquiry-box_content form textarea::placeholder,
.inquiry-box_content form span input::placeholder,
.inquiry-box_content form span select::placeholder,
.inquiry-box_content form span textarea::placeholder,
.inquiry-box_content form label input::placeholder,
.inquiry-box_content form label select::placeholder,
.inquiry-box_content form label textarea::placeholder {
    color: #fff !important;
}

.inquiry-box_content form input[type="text"],
.inquiry-box_content form input[type="number"],
.inquiry-box_content form input[type="tel"],
.inquiry-box_content form select,
.inquiry-box_content form span input[type="text"],
.inquiry-box_content form span input[type="number"],
.inquiry-box_content form span input[type="tel"],
.inquiry-box_content form span select,
.inquiry-box_content form label input[type="text"],
.inquiry-box_content form label input[type="number"],
.inquiry-box_content form label input[type="tel"],
.inquiry-box_content form label select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    border-radius: 0px;
    border: none;
    background-color: transparent;
    padding: 15px 0px;
    margin-bottom: 15px;
    border-bottom: 1px solid #fff;
}

.inquiry-box_content form .select-wrap,
.inquiry-box_content form span .select-wrap,
.inquiry-box_content form label .select-wrap {
    position: relative;
}

.inquiry-box_content form .select-wrap:after,
.inquiry-box_content form span .select-wrap:after,
.inquiry-box_content form label .select-wrap:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 0 6px;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    right: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.select-wrap:after {
    display: none\0;
}

.inquiry-box_content form textarea,
.inquiry-box_content form span textarea,
.inquiry-box_content form label textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0px;
    resize: none;
    width: 100%;
    height: 200px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    word-break: normal;
    color: #fff;
}

.inquiry-box_content form input[type="button"],
.inquiry-box_content form span input[type="button"],
.inquiry-box_content form label input[type="button"] {
    margin: 50px 0px 10px 0px;
    border: none;
    background-color: #fff;
}

.inquiry-box_content form input[type="button"]:hover,
.inquiry-box_content form span input[type="button"]:hover,
.inquiry-box_content form label input[type="button"]:hover {
    background-color: #e6e6e6;
}

.inquiry-box_content form .input-text,
.inquiry-box_content form span .input-text,
.inquiry-box_content form label .input-text {
    position: relative;
}

.inquiry-box_content form .input-text .input-unit-wrap,
.inquiry-box_content form span .input-text .input-unit-wrap,
.inquiry-box_content form label .input-text .input-unit-wrap {
    width: 100%;
    padding: 15px 0px;
    margin-bottom: 15px;
    border-bottom: 1px solid #fff;
    position: relative;
}

.inquiry-box_content form .input-text .input-unit-wrap input,
.inquiry-box_content form span .input-text .input-unit-wrap input,
.inquiry-box_content form label .input-text .input-unit-wrap input {
    border-bottom: 0px;
    width: 70%;
    padding: 0px;
    margin-bottom: 0px;
}

.inquiry-box_content form .input-text .unit,
.inquiry-box_content form span .input-text .unit,
.inquiry-box_content form label .input-text .unit {
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.inquiry-box_content form .input-short,
.inquiry-box_content form span .input-short,
.inquiry-box_content form label .input-short {
    display: inline-block;
    width: 29%;
    vertical-align: middle;
}

.inquiry-box_content form .input-short .input-unit-wrap input,
.inquiry-box_content form span .input-short .input-unit-wrap input,
.inquiry-box_content form label .input-short .input-unit-wrap input {
    width: 50%;
}

.inquiry-box_content form .input-text~span,
.inquiry-box_content form span .input-text~span,
.inquiry-box_content form label .input-text~span {
    display: inline-block;
    width: 6.5%;
    text-align: center;
    opacity: 0.7;
}

.inquiry-box_content form .package-type,
.inquiry-box_content form span .package-type,
.inquiry-box_content form label .package-type {
    font-size: 0px;
    border-radius: 3px;
    border: 1px solid #fff;
    overflow: hidden;
    margin: 15px 0px;
}

.inquiry-box_content form .package-type input,
.inquiry-box_content form .package-type label,
.inquiry-box_content form span .package-type input,
.inquiry-box_content form span .package-type label,
.inquiry-box_content form label .package-type input,
.inquiry-box_content form label .package-type label {
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.inquiry-box_content form .package-type input,
.inquiry-box_content form span .package-type input,
.inquiry-box_content form label .package-type input {
    display: none;
}

.inquiry-box_content form .package-type .package-type-tab,
.inquiry-box_content form span .package-type .package-type-tab,
.inquiry-box_content form label .package-type .package-type-tab {
    padding: 13px 0px;
    width: 49%;
}

.inquiry-box_content form .package-type .tab-border,
.inquiry-box_content form span .package-type .tab-border,
.inquiry-box_content form label .package-type .tab-border {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

.inquiry-box_content form .package-type input:checked+.package-type-tab,
.inquiry-box_content form span .package-type input:checked+.package-type-tab,
.inquiry-box_content form label .package-type input:checked+.package-type-tab {
    background-color: #8e99ae;
    color: #fff;
}

.inquiry-box_content .inquiry-price-form input[type="button"] {
    color: #008680;
}

.inquiry-box_content .track-num-form input[type="button"] {
    color: #616578;
}

.inquiry-price_content {
    background-color: rgba(23, 47, 90, 0.96);
}

.track-num_content {
    background-color: rgba(23, 47, 90, 0.96);
}

@media (max-width: 1199px) {
    .inquiry-box_content {
        position: absolute;
        bottom: 55px;
        left: 0;
        width: 100vw;
        padding-top: 60px;
    }
}

.inquiry-box_close-btn {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}

.inquiry-box_close-btn:before,
.inquiry-box_close-btn:after {
    content: "";
    width: 100%;
    height: 4px;
    position: absolute;
    top: 50%;
    background-color: #fff;
    border-radius: 2px;
}

.inquiry-box_close-btn:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.inquiry-box_close-btn:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.position {
    position: fixed;
    right: 0;
    bottom: 20%;
    z-index: 101;
}
.position ul {
    width: 40px;
    padding: 5px 5px 5px 10px;
    background-color: #57be6a;
}
.position ul li {
    padding: 10px 0;
    border-bottom: 1px solid #a3dfa7;
    position: relative;
}
.position ul li:last-child {
    border-bottom: none;
}
.position ul li a {
    width: 30px;
    height: 30px;
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    z-index: 3;
}
.position ul .wechat p {
    display: none;
    width: 100px;
    height: 100px;
    padding: 10px;
    position: absolute;
    right: 50px;
    top: -5px;
    background-color: #000;
}
.position ul .wechat p img {
    width: 100px;
    height: 100px;
}
.position ul .phone p {
    display: none;
    width: 120px;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    position: absolute;
    right: 50px;
    top: 0;
    background-color: #000;
    color: #fff;
}
.position ul li:nth-child(1) a img {
    position: absolute;
    left: 0;
    top: -56px;
}
.position ul li:nth-child(2) a img {
    position: absolute;
    left: 0;
    top: -113px;
}
.position ul li:nth-child(3) a img {
    position: absolute;
    left: -2px;
    top: -180px;
}
.position ul li:nth-child(4) a img {
    position: absolute;
    left: -2px;
    top: -238px;
}
.product #myTabs{
    width: 200px;
    margin: 33px auto;
}
.product #myTabs li:nth-of-type(-n + 2) {
    background: none;
}
.product #myTabs li{
    width: auto;
    padding:0;
}
.product #myTabs li a{
    color: #000;
    padding: 10px 16px;
    font-size: 17px;
    border-bottom:2px solid #ccc;
}
.product #myTabs li a.active{
    color: #007ffe;
    border-bottom:2px solid #007ffe;
}
.product .thumbnail{
    /*width: 343px;*/
    /*float: left;*/
    padding: 7px;
}
.product .thumbnail img{
    width: 100%;
}
.product .thumbnail .caption h3{
    color: #fff;
    font-size: 22px;
    background-color: #107eef;
    text-align: center;
    padding: 12px 0;
    margin-top:-2px;
}
.product .thumbnail .caption p{
    font-size: 15px;
    text-align: center;
    padding: 13px 0 20px 0;
}
