﻿+ /*common*/
html {
    height: 100%;
}

* {
    -webkit-tap-highlight-color: transparent;
}

body {
    padding: 0;
    margin: 0 auto;
    max-width: 1000px;
    font-family: tahoma,"Microsoft YaHei",arial,simsun,"宋体",sans-serif;
    font-size: 14px;
    background-color: #f8f8f8;
}

ul, li, h1, h3, p {
    font-size: 100%;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    background: 0;
}

input {
    -webkit-appearance: none;
}

::-webkit-scrollbar {
    display: none;
}

ul, li {
    list-style: none;
}

input, textarea {
    outline: none;
    box-sizing: border-box;
    resize: none;
}

a {
    text-decoration: none;
    outline: none;
}

.fl {
    float: left;
}

.fr {
    float: right;
}
/*common end*/
/*util*/
.isol {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 100;
    opacity: 0.5;
    display: none;
}

.middlecenter {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
/*util end*/
/*slides*/
.slides {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 35%; /*这个值可以随便改*/
}

    .slides ul.slideswarpper {
        position: absolute;
        top: 0;
    }

        .slides ul.slideswarpper li {
            float: left;
        }

            .slides ul.slideswarpper li img {
                width: 100%;
            }

    .slides .pointwarpper {
        position: absolute;
        bottom: 15px;
        right: 2%;
    }

        .slides .pointwarpper li {
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 10px;
            background-color: #776f68;
            margin: 0 2px;
        }

            .slides .pointwarpper li.sel {
                background-color: #fff;
            }
/*slides end*/
/*carousel*/
.carousel {
    background-color: white;
    overflow: hidden;
    position: relative;
}

    .carousel ul {
        position: absolute;
    }

        .carousel ul li {
        }

            .carousel ul li a {
                color: #333;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
/*carousel end*/
/*static float*/
.staticfloat {
    text-align: center;
    z-index: 20;
    bottom: 0;
    right: 0;
    position: fixed;
    padding-top: 10px;
    margin: 0 3% 15% 0;
    transition: margin-bottom .4s;
}

    .staticfloat div {
        border-radius: 500px;
        height: 45px;
        width: 45px;
        cursor: pointer;
        background-clip: padding-box;
        overflow: hidden;
        transition: all .4s;
    }

        .staticfloat div.hide {
            height: 0px;
            width: 0px;
            margin-top: 0px !important;
            border-width: 0px !important;
            margin-left: 27px;
            overflow: hidden !important;
        }

#gototop {
    margin-top: 20px;
    color: #999;
    background: white url('../images/bg/backtotop.png') center 8px no-repeat;
    background-size: 16px auto;
    line-height: 79px;
    box-shadow: 0 0 4px #555;
    border: 2px solid #fff;
    font-size: 95%;
    opacity: .9;
}
/*static float end*/
/*friendlytips*/
.friendlytips {
    -webkit-animation: animate-bg 1.5s ease-out 2;
    animation: animate-bg 1.5s ease-out 2;
    box-shadow: 0 0 4px #EA4504 !important;
}

@-webkit-keyframes animate-bg {
    0% {
        box-shadow: 0 0 4px #EA4504;
    }

    50% {
        box-shadow: 0 0 4px #ccc;
    }

    100% {
        box-shadow: 0 0 4px #EA4504;
    }
}

@keyframes animate-bg {
    0% {
        box-shadow: 0 0 4px #EA4504;
    }

    50% {
        box-shadow: 0 0 4px #ccc;
    }

    100% {
        box-shadow: 0 0 4px #EA4504;
    }
}
/*friendlytips end*/
/*spradio*/
.spradio {
    padding-left: 20px !important;
    position: relative;
    padding-top: 1.5px;
}

    .spradio:before {
        content: "";
        position: absolute;
        top: 0px;
        left: 0;
        width: 16px;
        height: 16px;
        border-radius: 100px;
        border: 1px solid #b9b9b9;
    }

    .spradio.sel:before {
        background: #EA4504 url('/Images/icon/right.png') center no-repeat;
        background-size: 18px;
        border: 1px solid #ea4504;
    }
/*spradio end*/
/*layout1*/
.layout1 {
    position: relative;
}

    .layout1 .warpper {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }
/*layout1 end*/
/*tabheader*/
.tabheader {
    padding-top: 9%;
    border-bottom: 1px solid #dfdfdf;
    margin-bottom: 2%;
}

    .tabheader .warpper {
        background-color: #fff;
        padding: 0 5%;
        box-sizing: border-box;
    }

        .tabheader .warpper:after {
            content: "";
            position: absolute;
            bottom: -1px;
            width: 20%;
            height: 2px;
            border-bottom: 2px solid #50c8d8;
            transition: left .5s;
        }

    .tabheader .col0:after {
        left: 17.5%;
    }

    .tabheader .col1:after {
        left: 62.7%;
    }

    .tabheader .warpper div {
        float: left;
        width: 50%;
        text-align: center;
        line-height: 2.7;
        cursor: pointer;
    }

        .tabheader .warpper div.sel {
            color: #50c8d8;
        }
/*tabheader end*/
/*按钮*/
.btn1 {
    border: 0;
    background: #019887;
    color: #fff;
    line-height: 0;
    width: 100%;
    display: inline-block;
    padding: 6.3% 0;
    text-align: center;
    font-size: 110%;
}
