﻿/*定义一款本地字体corbelb，用于以下样式fontCorbelb*/
@font-face {
    font-family: 'corbelb';
    src: url('/fonts/corbelb.ttf') format('opentype');
}
/*引用corbelb字体*/
.fontCorbelb {
    color: #0052d9;
    font: bold 48px 'corbelb';
}

/*产品页BANNER*/
#prBanner {
    margin: 0px auto;
    width: 1200px;
    height: 400px;
    color: #fff;
    overflow: hidden;
}

/*产品页底部BTN*/
#prBtmBtn {
    clear: both;
    padding: 30px 20px;
    overflow: hidden;
}

/*蓝底白字，大字号*/
.btnBlue {
    border-radius: 30px;
    width: 250px;
    height: 60px;
    line-height: 60px;
    background-color: #0052d9;
    font-size: 24px;
    color: #fff;
    text-align: center;
}

    .btnBlue a {
        display: block;
        color: #fff;
        text-decoration: none;
    }

        .btnBlue a:hover {
            color: #fff;
            text-decoration: none;
        }

/*蓝底白字，小字号*/
.btnBlueSmall {
    border-radius: 20px;
    width: 180px;
    height: 40px;
    line-height: 40px;
    background-color: #0052d9;
    font-size: 20px;
    color: #fff;
    text-align: center;
}

    .btnBlueSmall a {
        display: block;
        color: #fff;
        text-decoration: none;
    }

        .btnBlueSmall a:hover {
            color: #fff;
            text-decoration: none;
        }

/*蓝框蓝字*/
.btnBlueBorder {
    border-radius: 30px;
    width: 250px;
    height: 60px;
    line-height: 60px;
    border: 2px solid #0052d9;
    font-size: 24px;
    color: #0052d9;
    text-align: center;
}

    .btnBlueBorder a {
        display: block;
        color: #0052d9;
        text-decoration: none;
    }

        .btnBlueBorder a:hover {
            color: #0052d9;
            text-decoration: none;
        }

/*蓝框蓝字，小字号*/
.btnBlueBorderSmall {
    border-radius: 20px;
    width: 180px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #0052d9;
    font-size: 20px;
    color: #0052d9;
    text-align: center;
}

    .btnBlueBorderSmall a {
        display: block;
        color: #0052d9;
        text-decoration: none;
    }

        .btnBlueBorderSmall a:hover {
            color: #0052d9;
            text-decoration: none;
        }

/*白框白字*/
.btnWhiteBorder {
    border-radius: 30px;
    width: 250px;
    height: 56px;
    line-height: 56px;
    border: 2px solid #fff;/*#eee*/
    background-color: #fff;
    font-size: 24px;
    color: #333;
    text-align: center;
}

    .btnWhiteBorder a {
        display: block;
        color: #333;
        text-decoration: none;
    }

        .btnWhiteBorder a:hover {
            color: #333;
            text-decoration: none;
        }

/*白框白字，小字号*/
.btnWhiteBorderSmall {
    border-radius: 20px;
    width: 180px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #fff; /*#eee*/
    background-color: #fff;
    font-size: 20px;
    color: #333;
    text-align: center;
}

    .btnWhiteBorderSmall a {
        display: block;
        color: #333;
        text-decoration: none;
    }

        .btnWhiteBorderSmall a:hover {
            color: #333;
            text-decoration: none;
        }