﻿@charset "utf-8";

/*!
   * @名称：base.css
   * @功能：1、重设浏览器默认样式
   *       2、设置通用原子类
   */


/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */

html {
    background: white;
    font-family: '微软雅黑';
    color: #333;
}


/*@font-face {font-family: abc;src:url(../font/abc.ttf) format("truetype");color: #333;}*/


/* 内外边距通常让各个浏览器样式的表现位置不同 */

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    margin: 0;
    padding: 0;
}

img {
    border: none;
    outline: none;
}


/* 要注意表单元素并不继承父级 font 的问题 */

body,
button,
input,
select,
textarea {
    font: 12px;
}

input,
select,
textarea {
    font-size: 100%;
}


/* 去掉 table cell 的边距并让其边重合 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* ie bug：th 不继承 text-align */

th {
    text-align: inherit;
}


/* 去除默认边框 */

fieldset,
img {
    border: none;
}


/* ie6 7 8(q) bug 显示为行内表现 */

iframe {
    display: block;
}


/* 去掉 firefox 下此元素的边框 */

abbr,
acronym {
    border: none;
    font-variant: normal;
}


/* 一致的 del 样式 */

del {
    text-decoration: line-through;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
    font-style: normal;
    font-weight: 500;
}


/* 去掉列表前的标识，li 会继承 */

ol,
ul {
    list-style: none;
}


/* 对齐是排版最重要的因素，别让什么都居中 */

caption,
th {
    text-align: left;
}


/* 来自yahoo，让标题都自定义，适应多个系统应用 */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: 500;
}

q:before,
q:after {
    content: '';
}


/* 统一上标和下标 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}


/* 让链接在 hover 状态下显示下划线 */

a:hover {
    text-decoration: underline;
}


/* 默认不显示下划线，保持页面简洁 */

ins,
a {
    text-decoration: none;
}


/* 去除 ie6 & ie7 焦点点状线 */

a:focus,
*:focus {
    outline: none;
}


/* 清除浮动 */

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
    overflow: hidden;
}

.clearfix {
    zoom: 1;
    /* for ie6 & ie7 */
}

.clear {
    clear: both;
    display: block;
    font-size: 0;
    height: 0;
    line-height: 0;
    overflow: hidden;
}


/* 设置显示和隐藏，通常用来与 js 配合 */

.hide {
    display: none;
}

.block {
    display: block;
}


/* 设置浮动，减少浮动带来的 bug */

.fl,
.fr {
    display: inline;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.fixed {
    width: 100%;
    height: 100px;
    position: fixed;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 9999;
    box-shadow: 0px 2px 4px #bdbdbd;
}

.head {
    width: 100%;
    height: 100px;
    background: #fff;
}

.headc {
    width: 1170px;
    height: 100px;
    margin: 0 auto;
}

.logo {
    height: 82px;
    width: 404px;
    margin-top: 8px;
    overflow: hidden;
}

.nav {
    margin-left: 10px;
    height: 100px;
    width: 600px;
    float: left;
}

.nav ul li,
.nav ul li a {
    float: left;
    width: 100px;
    height: 100px;
}

.nav ul li a {
    margin: 34px 1px 0 1px;
    display: block;
    width: 98px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 10px;
    font-size: 18px;
    color: #333333;
    text-decoration: none;
}

.nav ul li a:hover,
.nav ul li a.active {
    background: #d9eaff;
}

.nav ul li {
    position: relative;
    z-index: 99999;
}

.nav ul li .nav_sub {
    width: 888px;
    height: 320px;
    position: absolute;
    left: -335px;
    top: 100px;
    background: url(../images/nav_bg.jpg) no-repeat;
    z-index: 2;
    display: none;
    box-shadow: 0px 4px 4px #bdbdbd;
}

.nav ul li .nav_sub .depict {
    width: 670px;
    height: 142px;
    padding: 8px 40px 0 40px;
}

.nav ul li .nav_sub .depict h2 {
    color: #0082cc;
    font-size: 16px;
    font-weight: 600;
    line-height: 56px;
    text-align: left;
}

.nav ul li .nav_sub .depict hr {
    width: 32px;
    height: 1px;
    float: left;
    background: #adadad;
}

.nav ul li .nav_sub p {
    font-size: 14px;
    line-height: 28px;
    color: #333;
    width: 600px;
    padding-top: 12px;
    text-align: left;
    font-weight: 500;
    letter-spacing: 2px;
}

.nav_sub .subnav {
    padding: 0 20px;
    width: 540px;
    height: 140px;
}

.nav_sub .subnav ul li {
    width: 160px;
    height: 32px;
    line-height: 32px;
    float: left;
    margin: 0;
}

.nav_sub .subnav ul li a {
    color: #333;
    font-size: 14px;
    width: 140px;
    height: 32px;
    line-height: 32px;
    display: block;
    border-radius: 0;
    margin: 0 20px;
}

.nav_sub .subnav ul li a:hover {
    background: none;
    color: #0082cc;
    font-weight: 600;
}

.head_r {
    height: 120px;
    width: 120px;
}

.head_r span {
    height: 26px;
    width: 40px;
    margin-top: 37px;
    display: block;
    float: left;
    z-index: 2;
}

.head_r span div {
    position: absolute;
    width: 200px;
    background: #fff;
    display: none;
}

.head_r span div.language li a,
.head_r span div.language li {
    width: 150px;
    height: 48px;
    line-height: 48px;
    display: block;
    text-align: center;
    font-size: 16px;
    border-radius: 20px;
    font-weight: 600;
    color: #0086cc;
}

.head_r span div.language li a:hover {
    background: #d9eaff;
    color: #fff;
    text-decoration: none;
    margin: 2px 0;
}

.head_r span div.language {
    width: 150px;
    height: 200px;
    top: 53px;
    left: -40px;
    border-radius: 0px 0px 10px 10px;
    padding-top: 10px;
}

#fdj,
#language {
    position: relative;
}

.head_r span div.fdj {
    top: 80px;
    left: -700px;
    border-radius: 24px;
    z-index: -1;
}

#fdj input {
    width: 800px;
    height: 48px;
    border: 1px solid #dbdbdb;
    border-radius: 24px;
    line-height: 48px;
    color: #333;
    text-indent: 24px;
    font-size: 16px;
}

.menu {
    width: 360px;
    background: #2b2c2d;
    left: 20000px;
    padding: 20px 20px;
    border-radius: 4px 4px 20px 20px;
    top: 53px;
}

.menu .off {
    width: 60px;
    height: 32px;
    border: 4px 4px 0 0;
    color: #fff;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 4px;
    z-index: 10px;
}

.menu ul li {
    width: 100%;
    line-height: 60px;
    text-indent: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #0086cc;
}

.menu .a1list {
    display: none;
}

.menu .a1list>ul>li>a {
    text-indent: 32px;
    color: #0086cc;
}

.menu li.a1 {
    background: url(../images/jia.png) no-repeat right 18px;
    background-size: 16px;
    border-bottom: 1px solid #dbdbdb;
}

.menu li.a2 {
    background: url(../images/jian.png) no-repeat right 18px;
    background-size: 16px;
    border-bottom: 1px solid #dbdbdb;
}

.banner {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    margin-top: 100px;
}

.b-img {
    height: 500px;
    position: absolute;
    left: 0;
    top: 0;
}

.b-img a {
    display: block;
    height: 500px;
    float: left;
    position: relative;
}

.bar-left {
    position: absolute;
    z-index: 1;
    display: block;
    width: 100px;
    height: 100%;
    left: 0px;
    background: none;
    top: 0px;
}

.bar-right {
    position: absolute;
    z-index: 1;
    display: block;
    width: 100px;
    height: 100%;
    right: 0px;
    background: none;
    top: 0px;
}

.bar-left em {
    display: block;
    width: 50px;
    height: 100px;
    background: url(../images/arrow.png) 0px 0px no-repeat;
    margin: 0 auto;
    margin-top: 225px;
}

.bar-right em {
    display: block;
    width: 50px;
    height: 100px;
    background: url(../images/arrow.png) -50px 0px no-repeat;
    margin: 0 auto;
    margin-top: 225px;
}

.bar-left .emcss {
    background-position: 0px -100px;
}

.bar-right .emcss {
    background-position: -50px -100px;
}

.banner_title {
    width: 1170px;
    height: 250px;
    color: #fff;
    font-weight: 600;
    position: absolute;
    top: 30px;
    left: 50%;
    margin-left: -585px;
}

.banner_title h1 {
    font-size: 28px;
    line-height: 140px;
    border-bottom: 1px solid #fff;
    height: 140px;
    width: 500px;
    letter-spacing: 4px;
}

.banner_title p {
    font-size: 18px;
    line-height: 36px;
    height: 120px;
    width: 500px;
    padding-top: 20px;
    letter-spacing: 2px;
}

.news1 {
    height: 424px;
    width: 568px;
    border: 1px solid #dbdbdb;
    margin-bottom: 30px;
}

.footer {
    width: 100%;
    background: #2b2c2d;
}

.footer_con {
    position: relative;
}

.return_top {
    width: 40px;
    height: 122px;
    position: absolute;
    left: 1220px;
    top: -122px;
}

.return_top ul li {
    width: 32px;
    height: 32px;
    color: #fff;
    background: #e36131;
    margin-bottom: 1px;
    text-align: center;
    padding: 4px;
    font-size: 12px;
}

.return_top ul li a {
    color: #fff;
    text-decoration: none;
}

.footer hr {
    width: 100%;
    height: 1px;
    background: #828282;
}

.footer_con,
.copy_con {
    width: 1170px;
    height: 300px;
    margin: 0 auto;
    padding: 30px 0;
}

.footer_con .menu_list {
    width: 116px;
    border-left: 1px solid #a7a7a7;
    float: left;
    text-indent: 15px;
}

.footer_con .menu_list h3 {
    line-height: 30px;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    height: 30px;
    width: 116px;
}

.footer_con .menu_list li,
.footer_con .menu_list li a {
    display: block;
    line-height: 30px;
    font-size: 12px;
    color: #7e7f7f;
    height: 30px;
    width: 116px;
}

.copy {
    width: 100%;
    height: 89px;
    padding: 0;
    border-top: solid 1px #828282
}

.copy_con {
    height: 89px;
    color: #cacaca;
    padding: 0px;
}

.copy_con p {
    line-height: 34px;
}

.copy_con a {
    color: #cacaca;
}

.content {
    width: 100%;
    height: 1020px;
    margin: 0 auto;
    position: relative;
}

.works {
    width: 1170px;
    height: 110px;
    position: absolute;
    top: -110px;
    left: 50%;
    margin-left: -585px;
}

.works h2 {
    height: 110px;
    width: 190px;
    line-height: 110px;
    font-size: 26px;
    font-weight: 500;
    text-align: center;
    float: left;
    background: #fff;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
}

.works .works_nav {
    width: 980px;
    height: 110px;
}

.works .works_nav ul li {
    width: 195px;
    border-left: 1px solid #c5c5c5;
    height: 68px;
    float: left;
    padding: 21px 0;
    background: #fff;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
}

.works .works_nav ul li:hover {
    border-left: 1px solid #0568bb;
    border-right: 1px solid #0568bb;
    width: 194px;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    background: #fff;
}

.works .works_nav ul li>p {
    width: 194px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.works_content {
    width: 1170px;
    height: 340px;
    position: absolute;
    left: 0;
    top: 110px;
    display: none;
    z-index: 9999;
    background: #fff;
    box-shadow: 0px 4px 4px #dbdbdb;
}

.works_content_l {
    width: 640px;
    height: 340px;
}

.works_content_l h3 {
    padding: 20px 0 20px 30px;
    width: 610px;
    height: 60px;
    line-height: 30px;
    font-size: 18px;
    font-weight: 560;
    border-bottom: 1px solid #dbdbdb;
    color: #333;
}

.works_content .content_a {
    padding: 20px 0 10px 30px;
    width: 610px;
    height: 240px;
    line-height: 28px;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    text-indent: 24px;
}

.works_content .content_a p {
    margin-bottom: 10px;
}

.works_content_l h3 span {
    color: #0568bb;
    font-size: 18px;
}

.works_content_r {
    width: 490px;
    height: 290px;
    padding: 50px 10px 0 30px;
}

.works_icon {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    opacity: 10;
    z-index: 999;
}

.main .maint {
    width: 100%;
    height: 50px;
    background: #f6f6f6;
}

.main .maint .maintc {
    width: 1170px;
    height: 40px;
    margin: 0 auto;
}

.main .maint .maintc h4 {
    font-size: 16px;
    font-weight: 600px;
    float: left;
    width: 120px;
    line-height: 50px;
}

.main .maint .maintc ul li {
    float: left;
    line-height: 50px;
    width: 460px;
}

.main .maint .maintc ul li a {
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 300px;
    display: block;
    float: left;
    background: url(../images/curc_w.png) no-repeat left 24px;
    text-indent: 10px;
}

.main .maint .maintc ul li a.act {
    background: url(../images/curc_b.png) no-repeat left 24px;
}

.main .maint .maintc ul li span {
    float: right;
    width: 140px;
    display: block;
    height: 40px;
}

.main_content {
    width: 1170px;
    padding-top: 40px;
    height: 930px;
    margin: 0 auto;
}

.main_contentl,
.main_contentr {
    width: 570px;
    height: 930px;
    float: left;
}

.main_contentr {
    margin-left: 27px;
}

.news1 {
    height: 424px;
    width: 570px;
}

.news1_pic {
    height: 424px;
    width: 570px;
}


/*.news1_con {height: 427px;width: 540px;padding: 0 15px;}
.news1_con h3 {font-size: 16px;width: 540px;height: 44px;line-height: 44px;border-bottom: 1px solid #dbdbdb;text-align: center;font-weight: 600;}
.news1_con>p {width: 540px;height: 50px;font-size: 14px;line-height: 24px;padding-top: 10px;overflow: hidden;position: relative;}*/

.news1_con p::after,
.news4 .news4_con ul li a::after {
    content: "...";
    font-weight: bold;
    position: absolute;
    bottom: 2px;
    right: 0;
    padding: 0 12px 2px 12px;
    background: #fff;
}

.news4 .news4_con ul li a::after {
    background: #f8f8f8;
}

.news1_con span {
    width: 540px;
    line-height: 24px;
    height: 24px;
    text-align: left;
    display: block;
    width: 100%;
}

.news2 {
    height: 410px;
    width: 540px;
    border: 1px solid #dbdbdb;
    padding: 0 15px;
}

.news2 h2,
.news4 h2 {
    width: 538px;
    height: 54px;
    line-height: 54px;
    font-size: 20px;
    text-align: left;
}

.news4 h2 {
    width: 540px;
}

.news2_list {
    width: 538px;
    height: 158px;
    border-bottom: 1px solid #dbdbdb;
}

.news2_list ul li {
    float: left;
    width: 134px;
    height: 158px;
}

.on {
    border-bottom: 2px solid #0082cc;
}

.news2_list ul li .news2_pic {
    width: 96px;
    height: 96px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto;
    /*	transform:rotate(0deg);transition:all 0.3s ease-in-out;*/
}


/*.news2_list ul li .news2_pic:hover{transform:rotate(360deg);}*/

.news2_list ul li p {
    width: 134px;
    height: 62px;
    line-height: 62px;
    font-weight: 18px;
    font-weight: 540;
    text-align: center;
    color: #333;
}

.news2_con {
    width: 538px;
    height: 190px;
    display: none;
    padding-top: 20px;
}

.news2_con p {
    line-height: 28px;
    font-size: 14px;
    text-indent: 24px;
}

.news2_con1 {
    width: 538px;
    height: 60px;
}

.news2_con1 ul li {
    width: 179px;
    height: 60px;
    float: left;
}

.news2_con1 ul li span {
    width: 34px;
    height: 30px;
    background: url(../images/icon_news2.png) no-repeat 0 0;
    display: block;
    margin: 15px 6px 0 10px;
    float: left;
}

.news2_con2 ul li span {
    background: url(../images/icon_news3.png) no-repeat 0 0;
}

.news2_con3 ul li span {
    background: url(../images/icon_news4.png) no-repeat 0 0;
}

.news2_con4 ul li span {
    background: url(../images/icon_news5.png) no-repeat 0 0;
}

.news2_cc {
    width: 129px;
    padding-top: 10px;
}

.news2_cc h3 {
    line-height: 28px;
    height: 28px;
    font-size: 16px;
    font-weight: 600;
}

.news2_cc p {
    line-height: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: 500;
    text-indent: 0;
}

.news2_list .news2_con p {
    width: 538px;
    height: 64px;
    padding: 10px 0;
    line-height: 32px;
    text-align: left;
}

.news3 {
    width: 540px;
    height: 424px;
    padding: 0px 15px;
    border-bottom: 1px solid #dbdbdb;
    border-top: 1px solid #dbdbdb;
    margin-bottom: 30px;
}

.news3 .news3t {
    border-bottom: 1px solid #dbdbdb;
    height: 56px;
    line-height: 56px;
}

.news3t h2 {
    width: 120px;
    height: 56px;
    float: left;
    font-size: 18px;
    font-weight: 560;
}

.news3t span {
    width: 105px;
    display: block;
    height: 56px;
    float: left;
    text-indent: 4px;
}

.news3t span input {
    display: none;
}

.news3 .news3_con {
    width: 540px;
    height: 306px;
    border-bottom: 1px solid #dbdbdb;
}

.news3 .news3_con ul li {
    line-height: 34px;
    height: 34px;
    width: 540px;
    background: url(../images/curc_w.png) no-repeat left 15px;
    text-indent: 10px;
}

.news3 .news3_con ul li a {
    width: 420px;
    height: 28px;
    display: block;
    float: left;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news3 .news3_con ul li span {
    width: 100px;
    height: 34px;
    float: right;
    display: block;
    font-size: 14px;
}

.news4 {
    width: 570px;
    height: 410px;
    border-bottom: 1px solid #dbdbdb;
}

.news4 h2 {
    background: #f8f8f8;
    width: 540px;
    padding: 0 15px;
}

.news4 h2 a {
    font-size: 14px;
}

.news4 .news4_con {
    width: 540px;
    height: 170px;
    background: #f8f8f8;
    margin-bottom: 30px;
    padding: 0px 15px;
    font-size: 14px;
}

.news4 .news4_con ul li {
    width: 240px;
    height: 150px;
    margin: 0 15px;
    float: left;
    padding: 10px 0;
    font-size: 14px;
}

.news4 .news4_con ul li a {
    color: #333;
    overflow: hidden;
    position: relative;
    height: 78px;
    line-height: 26px;
    display: block;
}

.news4 .news4_lunbo {
    width: 570px;
    height: 170px;
}

.colse_but {
    width: 17px;
    height: 17px;
    margin: 16px 40px 0 0;
}

.luara- {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.luara- ul {
    padding: inherit;
    margin: 0;
}

.luara- ul li {
    display: none;
    padding: inherit;
    margin: inherit;
    list-style: none;
}

.luara- ul li:first-child {
    display: block;
}

.luara- ul li img {
    width: inherit;
    height: inherit;
}


/*example*/

.example {
    width: 570px;
    height: 424px;
    overflow: hidden;
}

.example ul li {
    width: 570px;
    height: 424px;
    overflow: hidden;
    position: relative;
}

.example ul li .news1_title {
    background: #222;
    color: #fff;
    position: absolute;
    bottom: 0;
    font-size: 16px;
    font-weight: 800;
    width: 100%;
    height: 42px;
    line-height: 42px;
    text-indent: 20px;
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.example ol {
    position: relative;
    width: 80px;
    height: 20px;
    top: -60px;
    left: 480px;
}

.example ol li {
    float: right;
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #fff;
    border-radius: 50%;
}

.example ol li.seleted {
    background: #1AA4CA;
}

div.indexmaindiv {
    height: 170px;
    margin: 0px auto;
    width: 570px;
    position: relative;
}

div.indexmaindiv div.playerstyles {
    width: 235px;
    height: 44px;
    background: url('images/areabackground/playstyles.png') no-repeat;
}

div.indexmaindiv1 {
    margin-top: 25px;
}

div.indexmaindiv1 div.stylesgoleft {
    float: left;
    width: 21px;
    height: 28px;
    background: url(../images/arrowhead.png) no-repeat left top;
    position: absolute;
    left: 0;
    top: 60px;
    cursor: pointer;
}

div.indexmaindiv1 div.playerdetail {
    width: 235px;
    height: 130px;
    background: #FFF;
    position: relative;
}

div.indexmaindiv1 div.playerdetail .title {
    width: 235px;
    height: 30px;
    line-height: 30px;
    top: 100px;
    left: 0;
    position: absolute;
    background: #797868;
    filter: alpha(opacity=60);
    opacity: 0.6;
    color: #fff;
    text-align: center;
    font-size: 16px;
}

div.indexmaindiv1 div.playerdetail div.detailimg {
    width: 235px;
    height: 130px;
}

div.indexmaindiv1 div.playerdetail div.detailimg img {
    width: 235px;
    height: 130px;
}

div.indexmaindiv1 div.playerdetail div.teanames {
    text-align: center;
    font-size: 14px;
    margin-top: 5px;
    color: #404040;
}

div.indexmaindiv1 div.playerdetail div.teadetail {
    width: 156px;
    height: 27px;
    margin: 5px 8px;
    color: #666;
}

div.indexmaindiv1 div.playerdetail .checkdetail {
    width: 134px;
    height: 27px;
    display: block;
    background: url('images/areabackground/checkdetail.png') no-repeat;
    margin: 18px;
}

div.indexmaindiv1 div.stylesgoright {
    float: right;
    width: 21px;
    height: 28px;
    background: url(../images/arrowhead.png) no-repeat 0 -56px;
    position: absolute;
    right: 0;
    top: 60px;
    cursor: pointer;
}


/*滚动*/

div.maindiv1 {
    float: left;
    width: 540px;
    height: 130px;
    overflow: hidden;
    position: relative;
    margin: 0 15px;
}

div.maindiv1 ul {
    position: absolute;
    left: 0;
    top: 0;
}

div.maindiv1 ul li {
    float: left;
    width: 235px;
    height: 130px;
    margin: 0 17px;
}

@keyframes hover-color {
    from {
        border-color: #c0c0c0;
    }
    to {
        border-color: #3e97eb;
    }
}

.magic-radio {
    position: absolute;
    display: none;
}

.magic-radio[disabled] {
    cursor: not-allowed;
}

.magic-radio+label {
    position: relative;
    display: block;
    cursor: pointer;
    vertical-align: middle;
}

.magic-radio+label:hover:before {
    animation-duration: 0.4s;
    animation-fill-mode: both;
    animation-name: hover-color;
}

.magic-radio+label:before {
    position: absolute;
    top: 18px;
    left: -12px;
    display: inline-block;
    width: 16px;
    height: 16px;
    content: '';
    border: 1px solid #c0c0c0;
}

.magic-radio+label:after {
    position: absolute;
    display: none;
    content: '';
}

.magic-radio[disabled]+label {
    cursor: not-allowed;
    color: #e4e4e4;
}

.magic-radio[disabled]+label:after,
{
    cursor: not-allowed;
}

.magic-radio[disabled]+label:hover:before {
    border: 1px solid #e4e4e4;
    animation-name: none;
}

.magic-radio[disabled]+label:before {
    border-color: #e4e4e4;
}

.magic-radio:checked+label:before {
    animation-name: none;
}

.magic-radio:checked+label:after {
    display: block;
}

.magic-radio+label:before {
    border-radius: 50%;
}

.magic-radio+label:after {
    top: 23px;
    left: -7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3e97eb;
}
