@charset "utf-8"; /* 网站通用样式 */ #loading { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 9999; display: -ms-flexbox; display: flex; justify-content: center; align-items: center; width: 100%; height: 100%; background: #f6f6f6; } #loading img { width: .48rem; animation: load-ti 2s linear infinite; } @keyframes load-ti { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } } html { width: 100%; min-width: 1025px; font-size: 100px; overflow-x: hidden; } html::-webkit-scrollbar { width: .07rem; } html::-webkit-scrollbar-thumb { background: #00568C; } html::-webkit-scrollbar-track { border-radius: 0; background: rgba(0, 0, 0, 0.3); } .overflow { height: 100vh; overflow: hidden !important; } .container { width: 1400px; max-width: 85%; min-width: 871px; margin: 0 auto; font-size: .18rem; } .title { font-size: 0.18rem; line-height: 0.26rem; color: #333; } .info { font-size: 0.15rem; line-height: 0.24rem; color: #666; } .date { font-family: Arial; font-size: 0.16rem; line-height: 0.26rem; color: #00568C; } .date1 { font-family: Arial; font-size: 0.14rem; line-height: 0.2rem; color: #00568C; text-align: center; } .date1 p:first-child { margin: 0 0 .05rem; font-size: .24rem; font-weight: 700; line-height: .28rem; } /* 网站头部 */ .header { position: fixed; top: 0; right: 0; bottom: auto; left: auto; z-index: 1000; width: 100%; padding: .2rem 0 .1rem; background: #00568C; -moz-transition: padding 0.3s ease-out 0s; transition: padding 0.3s ease-out 0s; box-shadow: 0 0 0.12rem 0 rgba(0, 0, 0, 0.3); } /* .header::before { position: absolute; top: 0; right: 0; bottom: auto; left: auto; z-index: -1; content: ""; width: 100%; height: 0; background: #00568C; -moz-transition: all 0.32s ease-out 0s; transition: all 0.32s ease-out 0s; } */ .header .container { max-width: 1520px; width: 85%; } .header .right-wrap { /* width: 6.8rem; */ /* max-width: calc(100% - 8.2rem); */ } .header.scroll { padding: .11rem 0; -moz-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; } .header.scroll::before { height: 100%; box-shadow: 0 0 0.12rem 0 rgba(0, 0, 0, 0.6); } .header.scroll .nav { margin: .1rem 0 0; } .logo { -moz-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; } .logo img { max-height: .74rem; } .top-link { display: flex; align-items: center; margin: 0 0 0 .18rem; } .top-link a { position: relative; display: block; font-size: 0.16rem; line-height: 0.32rem; color: white; } .top-link a::after { position: absolute; top: auto; right: 0; bottom: 0.02rem; left: auto; z-index: 1; content: ""; width: 0; height: 1px; background: #fff; -moz-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; } .top-link a:hover { color: #fff; } .top-link a:hover::after { right: auto; left: 0; width: 100%; } .top-link span { width: 1px; height: .14rem; margin: 0 .1rem; background: rgba(255, 255, 255, 0.65); -moz-transform: rotate(25deg); transform: rotate(25deg); } .nav-btn { display: none; position: relative; z-index: 5; width: 30px; margin: 0 0 0 .16rem; vertical-align: middle; cursor: pointer; } .nav-btn i { display: block; height: 1px; margin: 8px 0; background: #fff; -moz-transition: all 0.3s cubic-bezier(0.99, 0.01, 0.01, 1) 0s; transition: all 0.3s cubic-bezier(0.99, 0.01, 0.01, 1) 0s; } .nav-btn i:nth-child(2) { width: 75%; } .nav-btn.close i:nth-child(1) { -moz-transform: translate(0px, 9px) rotate(45deg); transform: translate(0px, 9px) rotate(45deg); } .nav-btn.close i:nth-child(2) { opacity: 0; } .nav-btn.close i:nth-child(3) { -moz-transform: translate(0px, -9px) rotate(-45deg); transform: translate(0px, -9px) rotate(-45deg); } .nav { position: relative; z-index: 100; width: 100%; margin: .25rem 0 0; -moz-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; border-top: 1px solid rgba(255, 255, 255, .5); padding-top: .15rem; } .nav li { position: relative; } .nav li a { position: relative; display: block; font-size: 0.21rem; font-weight: 700; line-height: 0.5rem; color: #fff; text-align: center; } .nav li > a { -moz-transition: all 0.2s ease-out 0s; transition: all 0.2s ease-out 0s; -moz-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; } .nav li > a::before { position: absolute; top: auto; right: auto; bottom: -2px; left: 50%; z-index: 1; content: ""; width: 0%; height: 2px; background: #fff; border-radius: 2px; -moz-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; } .nav li:hover > a::before { left: 0; width: 100%; } .nav li:hover .sub-nav { visibility: visible; opacity: 1; -moz-transform: rotateX(0); transform: rotateX(0); } .nav .sub-nav { position: absolute; top: 100%; right: auto; bottom: auto; left: calc(50% - .9rem); z-index: 1; width: 1.8rem; padding: .07rem 0; background: #00568C; opacity: 0; visibility: hidden; box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2); background: white; border-radius: 3px; border-top: .03rem solid #F9801D; -moz-transition: all 0.42s ease-out 0s; transition: all 0.42s ease-out 0s; -moz-transform: rotateX(90deg); transform: rotateX(90deg); transform-origin: 50% 0%; } .nav .sub-nav dd { position: relative; padding: 0 .12rem; } .nav .sub-nav dd::before { position: absolute; top: 0; right: 0.12rem; bottom: auto; left: auto; z-index: 1; width: calc(100% - .24rem); height: 100%; content: ""; background: #00568C; opacity: 0; -moz-transition: all 0.2s ease-out 0s; transition: all 0.2s ease-out 0s; } .nav .sub-nav dd:last-child a { border: none; } .nav .sub-nav dd:hover::before { right: 0; width: 100%; opacity: 1; } .nav .sub-nav dd:hover a { color: #fff; border-color: transparent; } .nav .sub-nav a { z-index: 2; width: 100%; padding: .1rem 0; font-size: .15rem; font-weight: 400; line-height: .22rem; color: #333; border-bottom: 1px dashed #eee; -moz-transition: all 0.15s ease-out 0s; transition: all 0.15s ease-out 0s; } .nav .sub-nav .tri { position: absolute; top: auto; right: auto; bottom: 100%; left: 0%; z-index: 1; width: 100%; height: 10px; padding: 0; overflow: hidden; } .nav .sub-nav .tri::before { display: none; } .nav .sub-nav .tri::after { display: block; content: ""; box-sizing: border-box; width: 14px; height: 14px; margin: 0 auto; background: #F9801D; -moz-transform: translate(0px, 3px) rotate(45deg); transform: translate(0px, 3px) rotate(45deg); box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3); } .pc-search { border-radius: .2rem; border: 1px solid #FFFFFF; background: rgba(255, 255, 255, 0.1); overflow: hidden; } .pc-search form, .pc-search .form { display: flex !important; } .pc-search .input { width: 1.7rem; height: .3rem; padding: 0 .1rem 0 .14rem; vertical-align: top; font-size: 0.14rem; line-height: 0.3rem; color: #fff; } .pc-search .input::placeholder { color: white; } .pc-search .submit { width: .4rem; height: .3rem; background-image: url("../images/search.png"); background-repeat: no-repeat; background-position: 50% 50%; background-color: transparent; background-size: 0.14rem; } /* 网站底部 */ .footer { padding: .3rem 0 .3rem; background: #00568C; } .foot-nav { width: 100%; padding: 0 0 .4rem; margin: 0 0 .5rem; border-bottom: 1px solid rgba(255, 255, 255, 0.3); } .foot-nav a { display: inline-block; font-size: 0.24rem; line-height: 0.28rem; color: #fff; -moz-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; } .foot-nav li > a { font-weight: 700; } .foot-nav li > a::after { display: block; content: ""; box-sizing: border-box; width: .13rem; height: 2px; background: #F9801D; } .foot-nav .lv2 { margin: .28rem 0 0; } .foot-nav .lv2 a { position: relative; font-size: .17rem; line-height: .38rem; color: rgba(255, 255, 255, 0.7); } .foot-nav .lv2 a::after { position: absolute; top: auto; right: 0; bottom: 0.05rem; left: auto; z-index: 1; content: ""; width: 0; height: 1px; background: #fff; -moz-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; } .foot-nav .lv2 a:hover { color: #fff; } .foot-nav .lv2 a:hover::after { right: auto; left: 0; width: 100%; } .copy .img { margin: 0 0 .2rem; } .copy .img img { max-height: .6rem; } .copy .txt { font-size: 0.16rem; line-height: 0.3rem; color: #fff; text-align: center; border-top: 1px solid rgba(255,255,255,.5); padding-top: .15rem; margin-top: .15rem; } .txt { } .copy a { color: #fff; } .ewm li { margin: 0 0 0 .21rem; } .ewm li:first-child { margin: 0; } .ewm img { width: 1.2rem; } .ewm p { margin: 6px 0 0; font-size: .15rem; line-height: .3rem; color: #fff; text-align: center; } /*.foot-link { margin: 0 0 .15rem; }*/ .foot-link h6 { font-size: .2rem; line-height: .4rem; color: #fff; } .foot-link ul { width: calc(100% - 1.1rem); } .foot-link a { margin: 0 .3rem 0 0; font-size: .16rem; line-height: .4rem; color: #fff; white-space: nowrap; } .foot-link li:last-child a { margin: 0; } /* 内页样式 */ .decorate { position: relative; z-index: 1; padding: 6rem 0 0; overflow: hidden; } .decorate img { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; } .main-box { position: relative; z-index: 4; padding: 2.5rem 0 0; min-height: 8.5rem; background: #f8f8f8; } .place { font-size: 0.15rem; line-height: 0.52rem; color: #999; padding: 0 0 0 .28rem; background-image: url(../images/place.png); background-repeat: no-repeat; background-position: 0 50%; background-color: transparent; background-size: 0.2rem; } .place a { position: relative; display: inline-block; color: #999; } .place a::after { position: absolute; top: auto; right: 0; bottom: 0.12rem; left: auto; z-index: 1; content: ""; width: 0; height: 1px; background: #00568C; -moz-transition: all 0.4s ease-out 0s; transition: all 0.4s ease-out 0s; } .place a:hover { color: #00568C; } .place a:hover::after { right: auto; left: 0; width: 100%; } .sidebar { position: relative; z-index: 3; width: 3rem; margin: 0 0 .6rem; } .sidebar h3 { display: -ms-flexbox; display: flex; justify-content: center; align-items: center; position: relative; font-size: 0.32rem; line-height: 1rem; color: #fff; text-align: center; background: #00568C; letter-spacing: 2px; } .sidebar .sub-nav { position: relative; margin: .2rem 0 0; padding: .1rem .28rem; background: rgba(255, 255, 255, 0.6); box-shadow: 0px 0.04rem 0.25rem 0px rgba(165, 186, 199, 0.25); } .sidebar .sub-nav li { position: relative; border-bottom: 1px solid #ededed; } .sidebar .sub-nav li:last-child { border: none; } .sidebar .sub-nav li.cur .down { opacity: 1; } .sidebar .sub-nav li.cur > a { color: #00568C !important; font-weight: 700; } .sidebar .sub-nav li.cur > a p::after { width: 100%; opacity: 1; } .sidebar .sub-nav li.cur .lv3 { display: block; } .sidebar .sub-nav li:hover > a { color: #00568C; } .sidebar .sub-nav li:hover .down { opacity: 1; } .sidebar .sub-nav a { display: -ms-flexbox; display: flex; align-items: center; padding: .22rem .5rem .22rem .1rem; font-size: 0.19rem; line-height: 0.26rem; color: #333; -moz-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; } .sidebar .sub-nav a p { position: relative; } .sidebar .sub-nav a p::after { position: absolute; top: auto; right: auto; bottom: -0.03rem; left: 0; z-index: 1; width: 0; max-width: .9rem; height: .15rem; border-radius: .1rem 0 .1rem 0; background: #54a4e2; content: ""; -moz-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; opacity: 0; } .sidebar .sub-nav a span { position: relative; z-index: 2; } .sidebar .sub-nav .down { position: absolute; top: 0; right: 0; bottom: auto; left: auto; z-index: 1; width: .5rem; height: .64rem; background-image: url("../images/icon12_2.png"); background-repeat: no-repeat; background-position: 50% 50%; background-color: transparent; background-size: auto; cursor: pointer; opacity: .2; -moz-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; } .sidebar .sub-nav .down.close { -moz-transform: rotate(90deg); transform: rotate(90deg); } .sidebar .sub-nav .lv3 { display: none; margin: -.1rem 0 0; } .sidebar .sub-nav .lv3 a { height: auto; padding: .08rem 0 .08rem .2rem; font-size: .16rem; line-height: .24rem; } .sidebar .sub-nav .lv3 a::before { display: inline-block; width: 5px; height: 5px; background: #ccc; margin: 0 .1rem 0 0; border-radius: 50%; content: ""; -moz-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; } .sidebar .sub-nav .lv3 a:hover { color: #00568C; } .sidebar .sub-nav .lv3 a:hover::before { background: #00568C; } .sidebar .sub-nav .lv3 a.cur { color: #00568C; font-weight: 700; } .sidebar .sub-nav .lv3 a.cur::before { background: #00568C; } .main { position: relative; z-index: 4; width: calc(100% - 3.6rem); min-height: 4rem; padding: 0 0 .2rem; } .position { display: -ms-flexbox; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #00568C; } .position h3 { display: -ms-flexbox; display: flex; align-items: center; white-space: nowrap; font-size: 0.26rem; line-height: 0.7rem; color: #333; } .position h3 img { width: .38rem; margin: 0 .16rem 2px 0; } .position h3 i { display: inline-block; margin: 0 .15rem 0 0; border: .07rem solid rgba(129, 26, 23, 0.15); border-radius: 50%; } .position h3 i::after { display: block; content: ""; box-sizing: border-box; width: 7px; height: 7px; background: #00568C; border-radius: 50%; } .list1 { margin: .3rem 0 0; } .list1 li { position: relative; margin: .25rem 0 0; } .list1 li:first-child { margin: 0; } .list1 a { display: -ms-flexbox; display: flex; justify-content: space-between; align-items: center; position: relative; padding: .22rem .3rem; border: 1px solid rgba(129, 26, 23, 0.22); background: #fff; -moz-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; } .list1 a::after { position: absolute; top: auto; right: auto; bottom: -1px; left: 0; z-index: 1; content: ""; width: 0; height: 2px; background: #00568C; -moz-transition: all 0.5s ease-out 0s; transition: all 0.5s ease-out 0s; } .list1 .line { width: 1px; height: .5rem; background: #dfdfdf; } .list1 .date1 { font-size: .15rem; } .list1 .date1 p:first-child { font-size: .34rem; } .list1 .text { width: calc(100% - 1rem); } .list1 .info { margin: .05rem 0 0; } .picture2 { padding: .2rem 0 0; } .picture2 li { border-bottom: 1px solid rgba(12, 90, 160, 0.3); } .picture2 .img-zoom { display: -ms-flexbox; display: flex; justify-content: space-between; align-items: center; padding: .28rem; } .picture2 .img-frame { width: 2.9rem; padding: 1.9rem 0 0; } .picture2 .text { width: calc(100% - 3.3rem); } .picture2 .title { line-height: .28rem; max-height: .56rem; } .picture2 .line { width: .5rem; height: 3px; margin: .12rem 0 .15rem; background: #eeb553; } .picture2 .info { max-height: .72rem; margin: 0 0 .12rem; } .picture3 { display: flex; flex-wrap: wrap; margin: 0 -0.15rem; } .picture3 > li { width: 33.3333333333%; padding: 0 0.15rem; } .picture3 .img-zoom { margin: .3rem 0 0; padding: .1rem; border: 1px solid #eee; border-radius: 4px; -moz-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; background: #fcfeff; box-shadow: 0px 0.05rem 0.12rem 0px rgba(165, 186, 199, 0.32); } .picture3 .img { padding: 65% 0 0; } .picture3 .text { padding: .15rem 0 .07rem; } .picture3 .title { font-size: .18rem; line-height: .28rem; text-align: center; } .picture4 { display: flex; flex-wrap: wrap; margin: 0 -0.15rem; margin-bottom: .6rem; } .picture4 > li { width: 33.3333333333%; padding: 0 0.15rem; } .picture4 .img-zoom { margin: .3rem 0 0; border: 1px solid #eee; border-radius: 4px; -moz-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; background: #00568C; box-shadow: 0px 0.05rem 0.12rem 0px rgba(165, 186, 199, 0.32); } .picture4 .img { padding: 60% 0 0; } .picture4 .text { padding: .24rem .2rem .25rem; } .picture4 .title { color: #fff; font-size: .19rem; font-weight: 700; } .picture4 .info { margin: .15rem 0 0; color: rgba(255, 255, 255, 0.85); } .picture4 .bm { display: -ms-flexbox; display: flex; justify-content: space-between; align-items: center; margin: .18rem 0 0; font-family: "AlibabaPuHuiTi3-SemiBold"; font-size: .18rem; font-weight: 400; line-height: .34rem; color: #fff; } .picture4 .bm::after { display: block; content: ""; box-sizing: border-box; width: .34rem; height: .34rem; background-image: url("../images/f_icon6.png"); background-repeat: no-repeat; background-position: 40% 50%; background-color: #dfd8a2; background-size: 0.12rem; border-radius: 50%; } .picture4 .bm span { display: inline-block; } .teach-column { display: -ms-flexbox; display: flex; justify-content: space-between; align-items: center; margin: .2rem 0 0; border-bottom: 1px solid #ddd; } .teach-column h5 { margin: 0 0 -1px; font-size: 0.22rem; font-weight: 700; line-height: 0.5rem; color: #333; border-bottom: 3px solid #00568C; } .teach-column .more { padding: 0; font-size: .16rem; line-height: .5rem; background: none; } .teach-list { display: flex; flex-wrap: wrap; margin: 0 -0.15rem; margin-bottom: .3rem; } .teach-list > li { width: 20%; padding: 0 0.15rem; } .teach-list li { margin: .44rem 0 0; } .teach-list .img-zoom { z-index: 1; -moz-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; padding: .1rem .1rem 0; border-radius: .05rem; background: #FFFFFF; box-shadow: 0px 4px 0.15rem 0px rgba(14, 65, 150, 0.15); } .teach-list .img-zoom::before { position: absolute; top: auto; right: auto; bottom: 0; left: 0%; z-index: 1; content: ""; width: 100%; height: 2px; background: #00568C; } .teach-list .img-frame { background: #fff; } .teach-list .img-frame .img { padding: 120% 0 0; background-position-y: 10%; } .teach-list .title { line-height: .6rem; text-align: center; } .article { padding: .5rem 0 .2rem; } .article .title { font-size: 0.26rem; font-weight: 700; line-height: 140%; color: #333; text-align: center; } .article .sub-title1 { margin: 0 0 .08rem; font-size: 0.17rem; line-height: 0.32rem; color: #000; text-align: center; } .article .sub-title2 { margin: .08rem 0 0; font-size: 0.17rem; line-height: 0.32rem; color: #666; text-align: center; } .article .sub { margin: .25rem 0 .1rem; padding: 0 0 .2rem; font-size: 0.16rem; line-height: 0.22rem; color: #888; text-align: center; border-bottom: 1px solid rgba(12, 90, 160, 0.3); } .article .sub span { margin: 0 .2rem 0 0; } .article .sub span span { margin: 0; } .article .sub .time { padding: 0 0 0 .24rem; background-image: url("../images/f_icon5_1.png"); background-repeat: no-repeat; background-position: 0 50%; background-color: transparent; background-size: 0.17rem; } .article .sub .view { padding: 0 0 0 .26rem; background-image: url("../images/f_icon5_2.png"); background-repeat: no-repeat; background-position: 0 50%; background-color: transparent; background-size: 0.21rem; } .article .content { padding: .3rem 0 .2rem; font-size: 0.18rem; line-height: 200%; color: #333; text-align: justify; } .article .content p { word-break: break-word; margin: 0 0 .2rem; text-indent: 2em; } .article .content img, .article .content video { max-width: 100%; height: auto !important; } .article .content video { display: block; margin: 0 auto; } .article .content table { max-width: 100%; margin: 0 auto .2rem; } .article .content table td { word-break: break-all; } .article .content table p { text-indent: 0; margin: 0; } .article .content table img, .article .content table video, .article .content table iframe { margin-top: 0; margin-bottom: 0; } .article .content iframe { display: block; max-width: 100%; margin: 0 auto .2rem; } .article .cont-page { position: relative; padding: .3rem 90px .28rem .1rem; border-top: 2px solid #00568C; } .article .cont-page a { display: block; padding: 4px 0; font-size: 0.17rem; line-height: 0.28rem; color: #666; -moz-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; } .article .cont-page a span { color: #00568C; } .article .cont-page a:hover { text-decoration: none; color: #00568C; } .article .return-list { position: absolute; top: 50%; right: 0; bottom: auto; left: auto; z-index: 1; text-align: center !important; -moz-transform: translateY(-50%); transform: translateY(-50%); } .article .return-list p { -moz-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; font-size: 0.17rem; line-height: 200%; color: #00568C; text-align: center; } .article .return-list:hover p { font-weight: 700; } .article ul a, .article a { color: #2196f3; } .article ul a:hover, .article a:hover { text-decoration: underline; } .article .table-box { overflow-x: auto; } .teach-article { display: flex; justify-content: space-between; } .teach-article .teach-img { width: 1.8rem; } .teach-article .teach-img img { min-height: 2.4rem; object-fit: cover; } .teach-article .teach-img .name { margin: .2rem 0 .1rem; font-size: .21rem; font-weight: 700; line-height: .3rem; color: #333; text-align: center; } .teach-article .teach-img .p1 { margin: .1rem 0 0; font-size: .16rem; line-height: .24rem; color: #666; text-align: center; } .teach-article .teach-content { width: calc(100% - 2.2rem); } .teach-article .teach-title { font-size: .19rem; line-height: .55rem; color: #00568C; border-bottom: 1px solid #ddd; font-weight: 700; } .teach-article .teach-title i { display: inline-block; width: 0; height: 0; border: .06rem solid transparent; border-left-color: #00568C; margin: 0 4px 0 0; } .teach-article .content { padding: .2rem 0; } .article .share { display: flex; justify-content: flex-end; align-items: center; padding: .1rem 0 .3rem; -webkit-transition: top 0.01s linear 0s; -moz-transition: top 0.01s linear 0s; -ms-transition: top 0.01s linear 0s; -o-transition: top 0.01s linear 0s; transition: top 0.01s linear 0s; } .article .share p { margin: 0 0 0; text-indent: 0; font-size: 0.16rem; font-weight: 500; line-height: 0.2rem; color: #999; text-align: center; } .article .share .share-icon { display: flex; justify-content: center; } .article .share .share-icon .s-icon { width: .45rem; height: .45rem; margin: 0 .07rem; background-repeat: no-repeat; background-position: 50% 50%; background-color: #fff; background-size: 60%; border-radius: 50%; cursor: pointer; transition: all .3s; -ms-transition: all .3s; border: 1px solid #eee; } .article .share .share-icon .s-icon:hover { box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.15); } .article .share .share-icon .s-icon.sina { background-image: url(../images/share4_2.png); } .article .share .share-icon .s-icon.wechat { position: relative; background-image: url(../images/share4_1.png); } .article .share .share-icon .s-icon.qq { background-image: url(../images/share4_3.png); } .article .share .share-icon .s-icon.qzone { background-image: url(../images/share4_4.png); } .article .share .qrid_zz { position: absolute; bottom: 120%; right: 0; left: 50%; z-index: 1000; display: none; width: 1.5rem; height: auto; padding: .14rem .14rem .06rem; background: #fff; border-radius: 5px; transform: translateX(-50%); -ms-transform: translateX(-50%); box-shadow: 0 0 0.14rem 0 rgba(0, 0, 0, 0.2); } .article .share .qrid_zz #qrid { width: 100%; height: 100%; } .article .share .qrid_zz #qrid canvas { vertical-align: top; width: 100%; height: 100%; } .article .share .qrid_zz p { font-size: .14rem; line-height: .3rem; color: #666; text-align: center; margin: 4px 0 0; } .teach-article .article-head { display: -ms-flexbox; display: flex; justify-content: space-between; background: #f8f8f8; padding: .3rem .2rem .3rem .4rem; } .teach-article .article-head .img-box { position: relative; z-index: 1; width: 1.9rem; } .teach-article .article-head .img-box::after { position: absolute; top: -0.12rem; right: auto; bottom: auto; left: -0.12rem; z-index: -1; content: ""; width: 100%; height: 100%; background: linear-gradient(135deg, #00568C, #00568C); } .teach-article .article-head .img-box .img-zoom { box-shadow: 0 0 0.12rem 0 rgba(0, 0, 0, 0.25); } .teach-article .article-head .img-box .img { padding: 130% 0 0; background-position-y: 10%; } .teach-article .article-head .text { width: calc(100% - 2.4rem); padding: 0 0 0; font-size: 0.2rem; line-height: 200%; color: #333; } .teach-article .article-title { margin: .4rem 0 .2rem; border-bottom: 1px solid #00568C; } .teach-article .article-title span { display: inline-block; padding: 0 .25rem; margin: 0 0 -1px; font-size: 0.18rem; font-weight: 700; line-height: 0.46rem; color: #fff; text-align: center; background: linear-gradient(50deg, #00568C, #00568C); border-radius: 5px 5px 0 0; } .teach-article .article-title:first-child { margin-top: .1rem; } .teach-article .content p { margin: 0 !important; } /* 翻页样式 */ #list-page { margin: .4rem 0 .3rem !important; font-family: Arial; text-align: center; } #list-page .p_pages a, #list-page span, #list-page .p_goto a { font-size: 14px; width: auto; height: auto; margin-top: 5px; } #list-page .p_pages a, #list-page .p_no_d, #list-page .p_fun_d, #list-page .p_goto a { padding: 9px 11px; color: #00568C; border: 1px solid #aaa; border-radius: 4px; } #list-page .p_pages .p_no_d, #list-page a:hover, #list-page .p_goto a { background: #00568C; font-weight: bold; color: #fff; border-color: #00568C; } #list-page .p_t { padding: 0 2px 0 0; color: #777; } #list-page .p_first, #list-page .p_first_d, #list-page .p_last, #list-page .p_last_d { display: inline-block; } #list-page .p_pages span { color: #aaa; } #list-page .p_goto input { font-family: 'Arial'; color: #333; border-radius: 4px; width: 40px; height: 32px; line-height: 32px; vertical-align: bottom; } .to-top-part { position: fixed; top: auto; right: 0.2rem; bottom: 23%; left: auto; z-index: 5; overflow: hidden; padding: .08rem; visibility: hidden; } .to-top-part #to-top { display: block; width: .46rem; height: .46rem; border-radius: 2px; background-image: url("../images/toTop.png"); background-repeat: no-repeat; background-position: 50% 50%; background-color: #00568C; background-size: 0.24rem; cursor: pointer; box-shadow: 0 0 0.06rem 0 rgba(0, 0, 0, 0.3); -moz-transform: translateY(120%); transform: translateY(120%); -moz-transition: all 0.45s ease-out 0s; transition: all 0.45s ease-out 0s; } .to-top-part #to-top:hover { background-color: #00568C; } .to-top-part.show { visibility: visible; } .to-top-part.show #to-top { -moz-transform: translateY(0); transform: translateY(0); } @media screen and (min-width: 1025px) { .list1 a { -moz-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; } .list1 a:hover { border-color: #00568C; background: #00568C; } .list1 a:hover .title, .list1 a:hover .date1 { color: #fff; } .list1 a:hover .info { color: rgba(255, 255, 255, 0.8); } .list1 a:hover .line { background: rgba(255, 255, 255, 0.4); } .picture2 a { -moz-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; } .picture2 a:hover { background: #00568C; border-color: #00568C; } .picture2 a:hover::after { bottom: 0; opacity: 1; -moz-transition: bottom 0.4s ease-out 0s; transition: bottom 0.4s ease-out 0s; } .picture2 a:hover .title { color: #fff; } .picture2 a:hover .date, .picture2 a:hover .info { color: #fff; } .picture3 .img-zoom:hover { border-color: #00568C; background: #00568C; } .picture3 .img-zoom:hover .title { color: #fff; } }