@charset "gb2312";

/* CSS Document */
* {
  padding: 0;
  margin: 0;
}

div,
dl,
dt,
dd,
form,
h1,
h2,
h3,
h4,
h5,
h6,
img,
ol,
ul,
li,
table,
th,
td,
p,
span,
a {
  border: 0;
}

img,
input {
  border: none;
  vertical-align: middle;
}

body {
  font-family: Arial, Helvetica, "Microsoft Yahei", sans-serif;
  font-size: 16px;
}

ul,
ol {
  list-style-type: none;
}

button {
  border: none;
  cursor: pointer;
}

a:link,
a:visited {
  text-decoration: none;
  color: #333;
}

a:hover,
a:active {
  text-decoration: none;
  color: #333;
}

img {
  max-width: 100%;
  height: auto;
}

.pre,
.nex,
.zspre,
.zsnex,
.jypre,
.jynex {
  transition: transform 0.6s;
  -webkit-transition: transform 0.6s;
  -moz-transition: transform 0.6s;
  -ms-transition: transform 0.6s;
  -o-transition: transform 0.6s;
}

.pre:hover,
.nex:hover,
.zspre:hover,
.zsnex:hover {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.jypre:hover,
.jynex:hover {
  transform: scale(1.2) rotate(90deg);
  -webkit-transform: scale(1.2) rotate(90deg);
  -moz-transform: scale(1.2) rotate(90deg);
  -ms-transform: scale(1.2) rotate(90deg);
  -o-transform: scale(1.2) rotate(90deg);
}

/*header*/
header {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.top {
  width: 1400px;
  margin: 0 auto;
}

.topT {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-flex-pack: justify;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-flex-align: center;
  height: 108px;
  margin-top: 12px;
}

.topT a {
  color: #fff;
  font-size: 12px;
}

.topR form {
  width: 172px;
  height: 34px;
  border: 1px solid #7d7d7d;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.topR #searchkey {
  width: 76%;
  height: 34px;
  background: none;
  border: none;
  outline: none;
  padding-left: 10px;
  font-size: 14px;
  color: #fff;
}

.topR form input[type="submit"] {
  width: 13px;
  height: 14px;
  background: url(ss.png) no-repeat;
  cursor: pointer;
}

/*nav*/
nav {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

nav>ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-around;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-flex-pack: distribute;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-flex-align: center;
}

nav>ul>li {
  flex: 1;
  text-align: center;
  position: relative;
  transition: 0.6s;
}

nav>ul>li:hover,
#nav2>ul>li:not(:last-of-type)>a:hover {
  background: #003f88;
}

nav>ul>li>a {
  color: #fff !important;
  display: block;
  height: 54px;
  line-height: 54px;
}

.down {
  width: 116px;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 0;
  background-color: #fff;
  z-index: 2;
  -webkit-transform: translate(-50%, 10px);
  -ms-transform: translate(-50%, 10px);
  transform: translate(-50%, 10px);
  -webkit-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding: 15px 20px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  box-shadow: 0 5px 50px rgba(0, 0, 0, 0.3);
  visibility: hidden;
}

.down.active {
  visibility: visible;
  pointer-events: all;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  -webkit-transition-delay: 0.1s;
  -ms-transition-delay: 0.1s;
  transition-delay: 0.1s;
  opacity: 1;
}

.down:before {
  content: "";
  position: absolute;
  bottom: 100%;
  height: 25px;
  left: 0;
  right: 0;
  background-color: transparent;
}

.down:after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  border-style: solid;
  margin-left: -7px;
  border-width: 7px;
  border-color: transparent transparent #fff;
}

.down li:not(:last-of-type) {
  border-bottom: 1px solid #efefef;
}

.down a {
  display: block;
  position: relative;
  font-size: 15px;
  padding: 10px 0;
  color: #58595b;
  -webkit-transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  line-height: initial;
  text-align: center;
  letter-spacing: 1px;
  line-height: 24px;
}

.down a:hover {
  color: #005094;
}

.down a.active:before,
.down a:hover:before {
  -ms-transform-origin: top;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.down a:before {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: -20px;
  width: 4px;
  background: #005094;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.162, 0.85, 0.45, 1);
  transition: transform 0.3s cubic-bezier(0.162, 0.85, 0.45, 1);
}

/*banner*/
#banner {
  width: 100%;
}

#banner img {
  width: 100%;
  height: 65vh;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

#banner li {
  position: relative;
}

#banner li div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(bannerbj.png) no-repeat center;
  background-size: cover;
}

#banner .slick-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

#banner .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

#banner .slick-dots li button {
  background: #7d7d7d;
  text-indent: -9999px;
  width: 32px;
  height: 4px;
}

#banner .slick-active button {
  background: #fff !important;
}

#banner p {
  position: absolute;
  bottom: 15px;
  color: #fff;
  font-size: 26px;
  text-align: center;
  margin-left: 5.5%;
}

/*nav2*/
#nav2 {
  width: 100%;
  height: 116px;
  background: url(logobj.png) no-repeat;
  background-size: 100% 100%;
  position: fixed;
  top: 0;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  z-index: 99;
}

#nav2,
#nav2>ul {
  display: flex;
}

#nav2>div {
  flex-shrink: 0;
  margin-left: 50px;
  margin-top: 16px;
}

#nav2>ul {
  flex: 1;
  margin-left: 20px;
  height: 87px;
}

#nav2>ul>li {
  position: relative;
  width: 10%;
  text-align: center;
}

#nav2>ul>li:last-child {
  text-align: left;
}

#nav2>ul>li>a {
  color: #fff;
  display: block;
  transition: 0.6s;
  height: 100%;
  line-height: 87px;
}

.ssimg {
  margin-top: 36px;
  cursor: pointer;
  margin-left: 20px;
}

.ss {
  width: 100%;
  height: 100px;
  background: #015095;
  opacity: .90;
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 999;
  transition: all 0.5s ease;
}

.ss form {
  width: 55%;
  margin: 0 auto;
  border: 1px solid #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin-top: 20px;
}

.ss form #searchkey {
  width: 94%;
  height: 56px;
  padding-left: 10px;
  font-size: 14px;
  color: #fff;
  font-size: 20px;
  background: none;
  outline: none;
}

.ss form input[type="submit"] {
  width: 13px;
  height: 14px;
  background: url(ss.png) no-repeat;
  cursor: pointer;
}

.gb {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  line-height: 30px;
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 18%;
  text-align: center;
}

/*ѧԺ����*/
#xyxw {
  padding-top: 26px;
  position: relative;
  padding-bottom: 36px;
}

.xyxwbt {
  background: url(bt.png) no-repeat center;
  color: #005094;
  font-size: 27px;
  text-align: center;
}

.xyxwbt a:hover span:first-child {
  transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  -o-transform: rotateY(360deg);
}

.xyxwbt div {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #005094;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin: 4px 10px;
}

.xyxwbt span {
  font-size: 24px;
}

.xyxwbt span:first-child {
  display: inline-block;
  font-size: 45px;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}

.xyxwnr,
.xyxwnr1 {
  width: 1400px;
  margin: 0 auto;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}

.xyxwnr1 .slick-slide>div .xwnr:nth-child(2) {
  margin: 0 100px;
}

.slick-track:before,
.slick-track:after {
  display: none !important;
}

.xyxwnr div:first-child {
  overflow: hidden;
}

.xyxwnr img {
  width: 680px;
  height: 370px;
  object-fit: cover;
  font-family: "object-fit: cover;";
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}

.xyxwnr img:hover {
  transform: scale(1.02);
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
}

.xyxwnrR {
  width: 628px;
  background: url(xyxwR.png) no-repeat center;
  background-size: cover;
  padding: 60px 26px;
}

.xyxwnrR p,
.xyxwnrRT p {
  font-size: 22px;
}

.xyxwnrR p:hover {
  color: #005094;
}

.xyxwnrRT p:hover {
  color: #005094;
}

.xyxwnrR div,
.xyxwnrRT div {
  font-size: 15px;
  color: #414141;
  margin-top: 22px;
  line-height: 30px;
}

.ckxq {
  background: url(xq.png) no-repeat center;
  width: 146px;
  height: 44px;
  text-align: center;
  margin-top: 32px;
}

.xyxwnrR-zw {
  height: 120px;
}

.ckxq a {
  color: #fff;
  display: block;
  padding-top: 6px;
}

.xyxwnr1 {
  z-index: 1;
  margin-top: 12px;
}

.xyxwnr1 .slick-slide>div:first-child {
  margin-bottom: 74px;
}

.xwsj {
  background: url(sjbj.png) no-repeat center;
  background-size: cover;
  font-size: 14px;
  padding-left: 10px;
  height: 32px;
}

.xwsj span {
  font-size: 26px;
  color: #005094;
}

.xyxwnrRb {
  text-indent: 2em;
  height: 60px;
}

.xyxwnrRT {
  margin-top: 26px;
}

.xyxwnrRT div:last-child {
  text-align: right;
  margin-top: -30px;
}

.xyxwnrRT div:last-child a {
  color: #005094;
  font-weight: bold;
  position: relative;
}

.xyxwnrRT div:last-child a::after,
.jyzlxx div:last-child a::after {
  content: "";
  position: absolute;
  width: 0;
  max-width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.xyxwnrRT div:last-child a:hover::after,
.jyzlxx div:last-child a:hover::after {
  width: 100%;
}

.xwnr {
  width: 400px !important;
}

.xwzxsj {
  background: url(xwzxsj.png) no-repeat center;
  position: absolute;
  width: 180px;
  height: 180px;
  bottom: 50px;
  left: 180px;
}

.xwyxsj {
  position: absolute;
  background: url(xwyxsj.png) no-repeat center;
  width: 352px;
  height: 230px;
  bottom: -78px;
  right: 100px;
}

.tzggjt .pre,
.tzggjt .nex {
  width: 40px;
  height: 11px;
}

.tzggjt .pre {
  background: url(zjt.png);
}

.tzggjt .nex {
  background: url(yjt.png);
}

.dots {
  width: 400px;
  text-align: center;
}

.tzggjt .slick-dots li {
  display: inline-block;
}

.tzggjt .slick-dots li button {
  width: 10px;
  height: 10px;
  background: #b3b3b3;
  border-radius: 50%;
  margin: 0 5px;
  text-indent: -9999px;
}

.tzggjt .slick-dots .slick-active button {
  background-color: #005094;
}

/*֪ͨ����*/
#tzgg {
  background-color: #f2f2f2;
  padding-top: 30px;
  padding-bottom: 78px;
}

#tzgg .xyxwbt {
  position: relative;
  z-index: 1;
}

.tzgg {
  width: 1400px;
  margin: 0 auto;
  margin-top: 102px;
}

.tzgg .slick-slide>div .tzggnr:nth-child(2) {
  margin: 0 85px;
}

.tzggnr {
  width: 376px !important;
  height: 230px;
  background: url(tzgg.png) no-repeat center;
  padding-right: 34px;
  position: relative;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}

.tzggnr::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 25px;
  left: 17px;
  border-bottom: 5px solid #005094;
  width: 379px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s;
  -webkit-transition: transform 0.6s;
  -moz-transition: transform 0.6s;
  -ms-transition: transform 0.6s;
  -o-transition: transform 0.6s;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
}

.tzggnr:hover::after {
  transform: scaleX(1);
  transform-origin: left;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
}

.tzggnr div:first-child {
  color: #fff;
  font-size: 14px;
  padding-top: 38px;
  padding-left: 12px;
}

.tzggnr div:first-child span {
  font-size: 24px;
}

.tzggnr div:nth-child(2) {
  margin-left: 58px;
  margin-top: 40px;
  padding-right: 22px;
  height: 72px;
}

.tzggnr:hover div:nth-child(2) a {
  color: #005094;
  font-weight: bold;
}

.tzggnr div:last-child {
  font-size: 15px;
  font-weight: bold;
  text-align: right;
}

.tzggnr div:last-child a {
  color: #005094;
}

.tzggjt {
  width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/*������ҵ*/
#zsjy {
  padding-top: 30px;
  padding-bottom: 122px;
  background: url(zsjy.png) no-repeat center;
  background-size: cover;
  overflow: hidden;
}

#zsjy .xyxwbt {
  background: url(zsjybt.png) no-repeat center;
  color: #fff;
}

#zsjy .xyxwbt div {
  background: #fff;
}

.zsjynr {
  width: 1400px;
  margin: 0 auto;
  margin-top: 112px;
  display: flex;
  justify-content: space-between;
}

.zszl {
  width: 48%;
}

.zszlbt {
  background: url(zsbt.png) no-repeat;
  background-position-y: 8px;
  color: #fff;
  font-size: 22px;
  padding-left: 34px;
  padding-bottom: 12px;
  line-height: 18px;
}

.zszlnr {
  margin-top: 30px;
  position: relative;
}

.zszlnr p {
  color: #c6cbcf;
  font-size: 42px;
  position: absolute;
  bottom: 132px;
  left: 30px;
}

.zszlnr img {
  width: 100%;
  margin-bottom: 18px;
}

.zszlB {
  color: #fff;
  font-size: 14px;
  width: 620px;
  border-left: 2px solid #fff;
  margin-top: 22px;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}

.zszlB span {
  margin-left: 12px;
  width: 80%;
  font-size: 18px;
  display: inline-block;
}

.zszlB:hover {
  transform: translateX(10px);
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
}

.zszlB a {
  color: #fff;
  font-weight: bold;
}

.zszlB span a {
  font-weight: normal;
}

.zszlbtn {
  margin-top: 14px;
}

.zspre,
.zsnex,
.jypre,
.jynex {
  width: 30px;
  height: 30px;
}

.zspre,
.jypre {
  background: url(zszjt.png) no-repeat;
  margin-right: 10px;
}

.zsnex,
.jynex {
  background: url(zsyjt.png) no-repeat;
}

.jyzl {
  width: 48%;
  position: relative;
}

.jyzl .zszlbt {
  margin-left: 64px;
}

.jyzlnr {
  background: url(jyzlbj.png) no-repeat;
  height: 106px !important;
  margin-top: 44px;
  padding-top: 26px;
  padding-right: 42px;
  display: flex !important;
  justify-content: space-between;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}

.jyzlnr:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

.jyzlsj {
  margin-top: 2px;
  margin-left: 32px;
  font-size: 12px;
  color: #fff;
}

.jyzlsj span {
  font-size: 20px;
}

.jyzlxx {
  width: 420px;
}

.jyzlxx p {
  font-size: 22px;
}

.jyzlxx p:hover {
  color: #005094;
}

.jyzlxx div:first-of-type {
  font-size: 15px;
  color: #3a3a3a;
  text-indent: 2em;
  margin-top: 12px;
  width: 380px;
}

.jyzlxx div:last-child {
  font-size: 14px;
  font-weight: bold;
  text-align: right;
}

.jyzlxx div:last-child a {
  color: #005094;
  position: relative;
}

.jypre,
.jynex {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

.jyzlbtn {
  position: absolute;
  bottom: 76px;
  right: -60px;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/*����4*/
#nr4 {
  padding-top: 30px;
  padding-bottom: 82px;
}

#nr4 .xyxwbt:first-child {
  position: relative;
}

.nr4T,
.nr4B,
.db {
  width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.nr4T {
  margin-top: 72px;
  margin-bottom: 102px;
  font-size: 18px;
}

.nr4T-1 {
  background: url(zyjstb.png) no-repeat left;
  height: 90px;
}

.nr4T-1 p {
  margin-left: 30px;
}

.nr4T-1 p a {
  display: inline-block;
  transition: transform 0.6s;
  -webkit-transition: transform 0.6s;
  -moz-transition: transform 0.6s;
  -ms-transition: transform 0.6s;
  -o-transition: transform 0.6s;
}

.nr4T-1 p a:hover {
  color: #005094;
  font-weight: bold;
  transform: translateX(10px);
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
}

.nr4T-1 p:last-child {
  margin-top: 40px;
}

.nr4B {
  margin-top: 72px;
}

.nr4B div {
  width: 420px;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}

.nr4B a {
  position: relative;

}


.nr4B img {
  clip-path: polygon(0 0, 92% 0, 100% 20%, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 92% 0, 100% 20%, 100% 100%, 0 100%);

}

.nr4B div:hover {
  transform: scale(1.04);
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -o-transform: scale(1.04);
}

.nr4B a::before {
  content: "";
  position: absolute;
  top: 57px;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/*footer*/
footer {
  background: url(db.png) no-repeat center;
  color: #fff;
  padding: 24px 0;
  background-size: cover;
}

.dbL,
.dbR {
  display: flex;
  align-items: center;
}

.dbL div,
.dbR div {
  font-size: 16px;
  line-height: 30px;
  margin-top: 5px;
}

.dbL div:last-child {
  margin-left: 28px;
}

.dbR div:first-child {
  margin-right: 26px;
}

@media screen and (max-width: 1550px) {

  #nav2,
  #banner,
  .xyxwbt,
  #xyxw,
  #tzgg,
  #zsjy,
  #nr4,
  footer,
  header {
    width: 1550px;
  }

  .topT div:first-child {
    margin-left: 20px;
  }

  .topR {
    margin-right: 20px;
  }
}